题解列表
C语言训练-水仙花数
摘要:解题思路:将所有三位数遍历,分别判断是否为水仙花数,是则输出。注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ int m; ……
2925 ******自己复习用**********
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <stdbool.h>int main() { int n = 0; ……
c++小白,暴力ac
摘要:解题思路:注意事项:参考代码://#include<iostream>//using namespace std;//int a[1000], b[1000], c[1000];//int main(……