无聊的劳伦斯在做测评
无聊的劳伦斯在做测评
全部文章
分类
归档
标签
去牛客网
登录
/
注册
无聊的劳伦斯在做测评的博客
全部文章
(共124篇)
题解 | 小乐乐找最大数
#include <stdio.h> int main() { int max = 0; int compared = 0; scanf("%d", &max); while (scanf("%d", &compared)...
2026-03-19
0
30
题解 | Letter Song ~ 致十年后的我们
#include <stdio.h> int main() { int year = 0; char month_day[10] = { "\0" }; scanf("%d[^-]", &year); scanf("%s...
2026-03-18
0
28
题解 | 排序危机
#include <stdio.h> int main() { char data[3][100000] = { "\0" }; char receive = " "; int number = 0; int capital = 0; ...
2026-03-18
0
32
题解 | 添加逗号
#include <stdio.h> int main() { char num[20] = { " " }; int i = 0; char num1[20] = { " " }; int times = 0; for (i = 0;...
2026-03-18
0
29
题解 | 简写单词
#include <stdio.h> int main() { char word[100][51] = { ' ' }; for (int i = 0; scanf("%s", &word[i]) != -1; i++) { } int j = 0...
2026-03-18
0
31
题解 | 牛牛逆序输出
#include<stdio.h> void conversely(int x) { if (x/10 == 0) { printf("%d", x % 10); return; } printf("%d", x % 10); co...
2026-03-18
0
39
题解 | 字符串操作
#include <stdio.h> int main() { int n = 0; int m = 0; char s[100] = { ' ' }; scanf("%d %d", &n, &m); getchar(); for (in...
2026-03-17
0
33
题解 | 牛牛的替换
#include <stdio.h> int main() { int n = 0; char instead[4] = { ' ' }; scanf("%d", &n); for (int i = 0; i < 4; i++) { get...
2026-03-17
0
29
题解 | 牛牛的digit
#include <stdio.h> int main() { int x = 0; int i = 0; scanf("%d %d", &x, &i); i = pow(10, i); x = x % i; printf("%...
2026-03-17
0
38
题解 | 标题统计
#include <stdio.h> int main() { char title = ' '; int times = 0; while (scanf("%c", &title) != -1) { if (title != ' ' &&...
2026-03-17
0
30
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页