题解列表
判断能否被3、5、7整除
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void) { int a; scanf("……
c++ 2796简单解法
摘要:#include <iostream>#include <iomanip>using namespace std;int main() { int n; cin >>……
2544:N内求和两种方法
摘要:方法1 for循环#include <iostream>using namespace std;int main() { int n; cin >> n; int num = ……
1043: [编程入门]三个数字的排序
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,t,k; int a[3];&n……