1119: C语言训练-"水仙花数"问题1 摘要:```cpp #include using namespace std; int a,b,c; int sxh(int n) { a=n/100; b=n/10%10; c=n%…… 题解列表 2024年07月30日 0 点赞 0 评论 76 浏览 评分:0.0
1119水仙花数问题1(使用%1d的输入方式获取每一位数) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int a; int b; int c;…… 题解列表 2024年06月12日 0 点赞 0 评论 65 浏览 评分:0.0
课本上的习题 摘要:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int x; cin >> x;…… 题解列表 2024年01月01日 0 点赞 0 评论 85 浏览 评分:9.9
C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c,i; bool p; cin>>…… 题解列表 2023年09月12日 0 点赞 0 评论 85 浏览 评分:8.0
很简单的c++方法写的代码 清晰的思路 希望大佬们可以一起讨论 摘要: #include using namespace std; #include int main() { int a; int s…… 题解列表 2023年06月01日 0 点赞 0 评论 100 浏览 评分:0.0
新手解题:1119水仙花数 摘要:解题思路: 首先分别取出三位数再求取它们的立方和,最后与输入数值进行对比注意事项:参考代码:#include <iostream>using namespace std;int main(){ …… 题解列表 2023年02月02日 0 点赞 0 评论 98 浏览 评分:9.9
1119: C语言训练-"水仙花数"问题1 摘要:```cpp #include using namespace std; int main() { int num, a, b, c; cin >> num; a…… 题解列表 2022年10月26日 0 点赞 0 评论 110 浏览 评分:0.0
C语言训练-"水仙花数"问题1(小白写C++) 摘要:#include<iostream> using namespace std; int main() { int i,a,b,c; cin>>i; a=i%…… 题解列表 2022年10月25日 0 点赞 0 评论 145 浏览 评分:9.9
1119: C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include #include using namespace std; int main() { int t = 0; cin >> t; …… 题解列表 2022年10月08日 0 点赞 0 评论 91 浏览 评分:0.0
1119: C语言训练-"水仙花数"问题1 摘要:```cpp #include using namespace std; int s3(int g) { return g*g*g; } int main() { i…… 题解列表 2022年09月11日 0 点赞 0 评论 366 浏览 评分:8.0