汽水瓶(应该是最简单的代码) 摘要:解题思路:注意事项:参考代码:#includeint main(){ int n,ans; while(scanf("%d",&n)&&n!=0){ ans=0; if(n==…… 题解列表 2023年01月11日 0 点赞 0 评论 373 浏览 评分:9.9
题解 1128: C语言训练-排序问题<1>循环做法 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int a, b, c, d; scanf("%d %d %d %d", &a, &b,…… 题解列表 2023年01月11日 0 点赞 4 评论 957 浏览 评分:9.9
弟弟的作业(水题) 摘要:```c #include int main(){ int a,b,i,cnt=0,sum; char ch,s[10]; while(scanf("%d%c%d=%s",&a,…… 题解列表 2023年01月11日 0 点赞 0 评论 509 浏览 评分:9.9
2781: 奇偶ASCII值判断 摘要:```cpp #include using namespace std; int main() { char ch; cin>>ch; if(int(ch)&1)…… 题解列表 2023年01月11日 0 点赞 0 评论 784 浏览 评分:9.9
2782: 整数大小比较 摘要:```cpp #include using namespace std; int main() { int x,y; cin>>x>>y; if(x>y) …… 题解列表 2023年01月11日 0 点赞 0 评论 624 浏览 评分:9.9
数字整除(水题但投机取巧) 摘要:```c #include int main(){ char s[200]; int i,sum; while(scanf("%s",s)&&(s[0]!='0')){ s…… 题解列表 2023年01月11日 2 点赞 0 评论 437 浏览 评分:9.9
思路清晰,看了就懂 摘要:#include<stdio.h> int main(){ long long a,b,n,sum=0; long long t=0,day,T=0,i=0; scanf("%lld %lld %l…… 题解列表 2023年01月11日 0 点赞 3 评论 732 浏览 评分:9.9
[编程入门]报数问题(水题) 摘要:```c #include int f(int n,int m){ if(n==1) return 0;//递归出口 else return (f(n-1,3)+3)%n; } in…… 题解列表 2023年01月11日 0 点赞 0 评论 322 浏览 评分:9.9
2900: 螺旋加密 摘要:```cpp #include using namespace std; int a[25][25],b[90],c[25][25],d[410]; int main() { in…… 题解列表 2023年01月11日 0 点赞 0 评论 505 浏览 评分:9.9
2795: 财务管理 摘要:解题思路:注意事项:参考代码:s = ave = 0for i in range(0,12): a = float(input()) s = s + aave = s / 12print(…… 题解列表 2023年01月11日 0 点赞 0 评论 933 浏览 评分:9.9