无聊的马来熊在学习
无聊的马来熊在学习
全部文章
分类
归档
标签
去牛客网
登录
/
注册
无聊的马来熊在学习的博客
全部文章
(共67篇)
题解 | #字符个数统计#
#include <stdio.h> #include<string.h> // int main() { // char s[500] = { 0 }; // gets(s); // int len = strlen(s); // for (...
2023-03-22
0
180
题解 | #自守数#
#include <stdio.h> #include<math.h> // int main() { // int n=0; // scanf("%d",&n); // if(n>10) // { // int cou...
2023-03-21
0
208
题解 | #计算某字符出现次数#
int main() { char s[1000] = { 0 }; gets(s); int len = strlen(s); char ch = getchar(); if (ch >= 'A' && ch <= 'Z') ch...
2023-03-20
0
284
题解 | #汽水瓶#
#include <stdio.h> int main() { int n=0; while((scanf("%d",&n))!=EOF) { if(n==0) break; //1 2 3 4 5 6 7...
2023-03-20
0
204
题解 | #表示数字#
#include <stdio.h> #include<string.h> int main() { char s[100]={0}; gets(s); int len=strlen(s); if(s[0]>='0'&&s[0]<=...
2023-03-20
0
226
题解 | #记票统计#
#include <stdio.h> #include<stdio.h> struct S{ char str[20]; }; struct T{ char str[20]; }; int main() { int n=0; scanf("%d...
2023-03-20
0
202
题解 | #成绩排序#
#include <stdio.h> struct score { char name[10]; int s; }; int main() { int n = 0; int x = 0; scanf("%d", &n); scanf("%d...
2023-03-19
0
212
题解 | #Problem B#
#include <stdio.h> //注意还有主副对角线的和,测试用例是多组输入 int main() { int m = 0; while(scanf("%d", &m)!=EOF){ int arr[10][10] = { 0 }; for (in...
2023-03-15
0
329
题解 | #牛牛的时钟#
#include <stdio.h> struct Time{ int h; int m; int s; }; int main() { int n=0; scanf("%d",&n); int arr[10]; for(int i...
2023-03-13
0
186
题解 | #字符串加密#
#include <stdio.h> #include<string.h> int main() { char s1[101] = { 0 }; gets(s1); int len = strlen(s1); s1[len] = 'a'; ...
2023-03-06
0
225
首页
上一页
1
2
3
4
5
6
7
下一页
末页