无聊的劳伦斯在做测评
无聊的劳伦斯在做测评
全部文章
分类
归档
标签
去牛客网
登录
/
注册
无聊的劳伦斯在做测评的博客
全部文章
(共71篇)
题解 | 小乐乐排电梯
#include <stdio.h> int main() { int n,minutes = 0; scanf("%d", &n); minutes = (n/12)*4+2; printf("%d", ...
2026-03-05
0
15
题解 | 及格分数
#include <stdio.h> int main() { int x = 0; scanf("%d", &x); if(x >= 60){ printf("Pass"); } ...
2026-03-05
0
10
题解 | kiki算数
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", (a+b)%100); return 0...
2026-03-04
0
10
题解 | 小乐乐求和
#include <stdio.h> int main() { long a, n = 0; scanf("%ld", &n); a = 1; while(n-1){ a = a + n; n-...
2026-03-04
0
12
题解 | 成绩
#include <stdio.h> int main() { float A,B,C, S = 0; scanf("%f %f %f", &A, &B, &C); S = A*0.2 + B*0.3 + C*0.5;...
2026-03-04
0
11
题解 | 牛牛的并联电路
#include <stdio.h> int main() { float r1, r2, R = 0; scanf("%f %f", &r1, &r2); R = 1/(1/r1 + 1/r2); printf(&q...
2026-03-04
0
12
题解 | 牛牛学立体
#include <stdio.h> int main() { int a, b, c, S, V = 0; scanf("%d %d %d", &a, &b, &c); S = 2*(a*b + b*c + c*a)...
2026-03-04
0
12
题解 | 计算机内存
#include <stdio.h> int main() { int n = 0; long a = 0; scanf("%d", &n); a = n*1024*1024; printf("%ld&quo...
2026-03-04
0
11
题解 | 温标转换
#include <stdio.h> int main() { double K = 0; double F = 0; scanf("%lf", &K); F = (K-273.15)*1.8 + 32; printf...
2026-03-04
0
13
题解 | 明天星期几?
#include <stdio.h> int main() { int d = 0; scanf("%d", &d); if(d<7){ printf("%d", d+1); } ...
2026-03-04
0
9
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页