题解列表
1059等差数列(数学求和公式推)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if(n==1) { printf("2")……
编写题解 1120: C语言训练-"水仙花数"问题2
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int n,g,s,b;for(int i=100;i<100……
1062最大公约与最小公倍
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gongyueshu(int m,int n){ if(m>n) { for(int i=n;i>=1;i--) { ……