正在背八股的小白很迟缓
正在背八股的小白很迟缓
全部文章
分类
归档
标签
去牛客网
登录
/
注册
正在背八股的小白很迟缓的博客
全部文章
(共4篇)
题解 | #逆序输出#
#include <stdio.h> int main() { int a, b, c, d, e, f, g, h, i, j; scanf("%d %d %d %d %d %d %d %d %d %d", &a, &b, &...
2024-01-25
0
157
题解 | #你是天才吗?#
#include <stdio.h> int main() { int IQ; scanf("%d",&IQ); if (IQ>=140) printf("Genius"); return 0;...
2024-01-21
1
186
题解 | #被5整除问题#
#include <stdio.h> int main() { int a=10; scanf("%d",&a); if(a%5==0) printf("YES"); else printf...
2024-01-18
1
195
题解 | #计算带余除法#
#include<stdio.h> int main() { int a = 15; int b = 2; int c=0; int d=0; scanf("%d %d",&a,&b); c=a/b; d=a%b; printf("%d %...
2024-01-18
1
189