题解列表
这题明明很简单,你知道你为啥做不对吗?
摘要:小编刚刚一看到这个题目的时候,感觉这个题目不是很简单吗?
但是每次提交都是显示格式错误
我顿时迷糊了
不过我立马又读了一变题目
and you must note that there is ……
1043: [编程入门]三个数字的排序<1>
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int a, b, c, Max, Mid, Min; scanf("%d %d %d",……
1009: [编程入门]数字的处理与判断<1>
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, num, a[5], count; scanf("%d",&n); if (……
1011: [编程入门]最大公约数与最小公倍数
摘要:解题思路:注意事项:参考代码://辗转相除法#include <stdio.h>int main() { int m, n; scanf("%d %d", &m, &n); int ……
1018: [编程入门]有规律的数列求和<1>
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int n; scanf("%d",&n); float summ(float n); ……
数字整除 这个题我就是用的小学的竖除法 一步一步算
摘要:解题思路:竖除法注意事项:不要跟着题走,自己要有一些创新想法参考代码:#include<iostream>#include<string>using namespace std; int main()……
1062: 二级C语言-公约公倍
摘要:参考代码:#include <stdio.h>int main(){ int m, n; scanf("%d %d", &m,&n); int gysf(int m,int n); ……