无聊的劳伦斯在做测评
无聊的劳伦斯在做测评
全部文章
分类
归档
标签
去牛客网
登录
/
注册
无聊的劳伦斯在做测评的博客
全部文章
(共71篇)
题解 | 【模板】牛牛学取余
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a%b); return 0; }
2026-03-04
0
13
题解 | 【模板】牛牛学除法
#include <stdio.h> int main() { int a, b; scanf("%d %d",&a,&b); printf("%d",a/b); return 0; }
2026-03-04
0
11
题解 | 牛牛的圆
#include <stdio.h> #include <math.h> int main() { int r; scanf("%d", &r); printf("%.2lf", 3.14*pow(r,...
2026-03-03
0
9
题解 | 你能活多少秒
#include <stdio.h> int main() { int age; double second = 3.156e7; scanf("%d", &age); printf("%.0lf", ag...
2026-03-03
0
14
题解 | 牛牛买电影票
#include <stdio.h> int main() { int x; scanf("%d", &x); printf("%d", 100*x); return 0; }
2026-03-03
0
15
题解 | 【模板】牛牛学乘法
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a*b); return 0; }
2026-03-03
0
12
题解 | 牛牛的等差数列
#include <stdio.h> int main() { int a, b, c; scanf("%d %d", &a, &b); c = b - a; printf("%d", b+c); ...
2026-03-03
0
13
题解 | 【模板】牛牛学加法
#include <stdio.h> int main() { int a,b; scanf("%d %d", &a,&b); printf("%d", a+b); return 0; }
2026-03-03
0
15
题解 | 牛牛的空格分隔
#include <stdio.h> int main() { char c; int a = 0; double f = 0; scanf("%c" "%d" "%lf", &c, &...
2026-03-03
0
17
题解 | 【模板】牛牛学说话之-浮点数
#include <stdio.h> int main() { double x; scanf("%lf", &x); printf("%.9lf", x); return 0; }
2026-03-03
0
12
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页