题解列表

筛选

1029-自定义函数处理素数

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;bool isPrime(int n){ bool flag=t……

1026-数字逆序输出

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; for(int i=0;i<10;i++)   ……