C语言训练-"水仙花数"问题1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a=0,b; cin>>n; b=n; while(…… 题解列表 2018年02月27日 1 点赞 0 评论 857 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(Python代码)python 摘要:```python num= int(input())#输入并且字符转换为浮点型(input返回的是一个字符串) g=int(num%10)#个位 s=int(num/10%10)#十位 …… 题解列表 2019年11月23日 0 点赞 0 评论 986 浏览 评分:0.0
用三目运算符简化if-else 摘要:```c #include int main(){ int num; int a,b,c; scanf("%d",&num); a=num/100%10; b=num/10%…… 题解列表 2022年10月03日 0 点赞 0 评论 100 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:```c #include #include int main() { int s; scanf("%d", &s); printf("%d", (s==pow(s/100,3…… 题解列表 2019年10月11日 0 点赞 0 评论 440 浏览 评分:0.0
C语言训练-"水仙花数"问题 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int n; int main() { int a; cin>…… 题解列表 2021年11月21日 0 点赞 0 评论 212 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,a,b,c,m,n; scanf("%d",&i…… 题解列表 2018年11月14日 0 点赞 0 评论 253 浏览 评分:0.0
C语言训练-"水仙花数"问题1 摘要:解题思路:判断各位数的立方和与该数本身是否相等,相等输出1,不相等输出0;注意事项:无参考代码:#include<stdio.h>#include<string.h>int a,b,c,d;void …… 题解列表 2022年01月18日 0 点赞 0 评论 138 浏览 评分: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 评论 66 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:#include #include int main() { int n; int a,b,c,sum=0; scanf("%d",&n); a=n/100%10; b=n/…… 题解列表 2019年06月15日 0 点赞 0 评论 299 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int b,bjg = 0,yx = 0,hx = 0; scanf("%d…… 题解列表 2024年12月04日 0 点赞 0 评论 170 浏览 评分:0.0