1042题 :电报加密 摘要:# 自己写的代码 ```c #include #include int main() { char a[20]; gets(a); int len; len=strlen…… 题解列表 2023年07月05日 0 点赞 0 评论 278 浏览 评分:0.0
1043题 : 三个数字的排序 摘要:# 自己写代码 ```c #include int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a>b){ …… 题解列表 2023年07月05日 0 点赞 0 评论 363 浏览 评分:0.0
1044题 : 三个字符串的排序 摘要:# 自己写的代码(没有写完,代码不好) ```c #include #include int main() { char a[20],b[20],c[20]; get…… 题解列表 2023年07月05日 0 点赞 0 评论 309 浏览 评分:0.0
懒人求解法 摘要:解题思路:数组快速计算结果注意事项:数组不要越界访问参考代码:#include<stdio.h>int main(){ int a[9],b; for(b=0;b<9;b++) { …… 题解列表 2023年07月06日 0 点赞 0 评论 306 浏览 评分:9.9
负值 平均值 正值 代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; float b=0; int c=0; double j=0; …… 题解列表 2023年07月06日 0 点赞 0 评论 326 浏览 评分:0.0
一看就懂,简单解决 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a, b; while (scanf("%d%d", &a, &b) == 2) { …… 题解列表 2023年07月06日 0 点赞 0 评论 430 浏览 评分:9.9
简简单单一行搞定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\nHello World!\n***…… 题解列表 2023年07月06日 0 点赞 0 评论 308 浏览 评分:9.9
三元运算简单解决 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); printf("…… 题解列表 2023年07月06日 0 点赞 0 评论 302 浏览 评分:9.9
公约公倍数代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int max(int m,int n){ int r; while(m%n) { r=m%n; …… 题解列表 2023年07月06日 0 点赞 0 评论 304 浏览 评分:9.9
数字逆序输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int i; int c; for (i=0;i<10;i++) …… 题解列表 2023年07月06日 0 点赞 0 评论 300 浏览 评分:0.0