越越羽拾
越越羽拾
全部文章
分类
归档
标签
去牛客网
登录
/
注册
越越羽拾的博客
全部文章
(共2篇)
题解 | #你是天才吗?#
#include <stdio.h> int main() { int a, b; while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 prin...
2024-01-24
0
126
题解 | #判断两个数的大小关系#
#include <stdio.h> int main() { int a, b; while (scanf("%d %d", &a,&b) != EOF) { // 注意 while 处理多个 case // 64 ...
2024-01-24
0
143