MountainsHao
MountainsHao
全部文章
分类
归档
标签
去牛客网
登录
/
注册
MountainsHao的博客
全部文章
(共74篇)
题解 | #ZOJ#
#include <stdio.h> #include <string.h> int main() { char str[110]; while (scanf("%s", str) != EOF) { int sumz =...
2024-03-15
0
161
题解 | #统计字符#
#include<stdio.h> #include<string.h> int main() { char a[100]; char b[100]; while (gets(a) != NULL) { if (a[0] == '#')...
2024-03-15
0
164
题解 | #大数加法#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算两个数之和 * @param s string字符串 表示第一个整数 * @param t string字符串 表示第二个整数 * @return string字符串 */ #includ...
2024-03-14
0
172
题解 | #二叉树的最大深度#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * ...
2024-03-14
0
153
题解 | #守形数#
#include <stdio.h> #include <stdbool.h> bool isShouxing(int n) { int temp1 = n, temp2 = n * n; while (temp1 > 0) { if (temp1 % 1...
2024-03-14
2
179
题解 | #字母统计#
#include <stdio.h> #include <string.h> int main() { char str[100]; while (scanf("%s", str) != EOF) { int a[26] ...
2024-03-14
0
202
题解 | #Zero-Transposition#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { long long a[n]; for (int i = 0; i...
2024-03-14
0
157
题解 | #加减乘除#
#include <stdio.h> int jiecheng(int n) { if(n==0||n==1) return 1; else return n*jiecheng(n-1); } int main() { int a,c; char b; while (sca...
2024-03-13
0
195
题解 | #数字求和#
#include <stdio.h> int main() { int a,arr[5]; while(scanf("%d",&a)!=EOF) { int sum=0; for(int i=0; i<5; i++) { scanf(...
2024-03-13
0
178
题解 | #最大上升子序列和#
#include <stdio.h> int max(int a, int b) { return a > b ? a : b; } int main() { int a[1001], dp[1001], n; while (scanf("%d...
2024-03-12
0
164
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页