yyyyyyyyyyyyyyyyy 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; for(int i=10…… 题解列表 2023年07月13日 0 点赞 0 评论 118 浏览 评分:0.0
优质题解 编写题解 1120: C语言训练-"水仙花数"问题2 摘要:解题思路: 1、创建4个int类型的变量,分别是:g(个位上的数),s(十位上的数),b(百位上的数),h(和) 2、循环开始是100(最小的三位数),到999(最大的三位数) …… 题解列表 2023年07月13日 0 点赞 0 评论 816 浏览 评分:7.6
1120: C语言训练-"水仙花数"问题2 摘要:解题思路: 就是一个一个用for循环试。。。注意事项: 这样的数有4个!4个!4个!重要的事情说三遍!!!参考代码:方法一:#include<bits/stdc++.h>using namespac…… 题解列表 2023年07月11日 0 点赞 0 评论 119 浏览 评分:9.9
1120: C语言训练-"水仙花数"问题2 摘要:```cpp #include using namespace std; int main() { int num, a, b, c; for ( num = …… 题解列表 2022年10月26日 0 点赞 0 评论 137 浏览 评分:0.0
C语言训练-"水仙花数"问题2(小白写C++) 摘要:#include<iostream> using namespace std; int main() { int i,a,b,c; for(i=100;i<100…… 题解列表 2022年10月25日 0 点赞 0 评论 165 浏览 评分:9.9
1120: C语言训练-"水仙花数"问题2 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cmath> using namespace std; int main() { for (…… 题解列表 2022年10月08日 0 点赞 0 评论 83 浏览 评分:0.0
1120: C语言训练-"水仙花数"问题2 摘要:简简单单,回味无穷 ```cpp #include using namespace std; int s3(int g) { return g*g*g; } int main(…… 题解列表 2022年09月11日 0 点赞 0 评论 231 浏览 评分:9.9
水仙花数题解 摘要:解题思路:1——计算机。2——人工。注意事项:无参考代码:人工#include<bits/stdc++.h>using namespace std;int main(){ cout<<153<<…… 题解列表 2022年05月28日 0 点赞 0 评论 174 浏览 评分:9.9
C语言训练-"水仙花数"问题2 摘要:解题思路:把四个数算出来直接输出注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c,d;int main(){ cout…… 题解列表 2022年05月05日 0 点赞 0 评论 144 浏览 评分:0.0
编写题解 1120: C语言训练-"水仙花数"问题2 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<ctype.h>using namespace std;int main(){ int a,b,c; f…… 题解列表 2022年03月20日 0 点赞 0 评论 193 浏览 评分:0.0