C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:#include int main() { int a,b,c,d; scanf("%d",&a); if(a/100>0&&a/100…… 题解列表 2019年10月27日 0 点赞 0 评论 748 浏览 评分:9.9
新手解题:1119水仙花数 摘要:解题思路: 首先分别取出三位数再求取它们的立方和,最后与输入数值进行对比注意事项:参考代码:#include <iostream>using namespace std;int main(){ …… 题解列表 2023年02月02日 0 点赞 0 评论 109 浏览 评分:9.9
C语言训练-"水仙花数"问题1-题解(Python代码) 摘要:解题思路:注意事项:参考代码:num = input() if int(num)==int(num[0])**3+int(num[1])**3+int(num[2])**3: print(…… 题解列表 2020年11月18日 0 点赞 0 评论 781 浏览 评分:9.9
C语言训练-"水仙花数"问题1 摘要:解题思路:提取百位数:a/100(例如:371/100=3)提取十位数:(a/10)%10(例如:371/10=37 37%10=7) 提取个位数:a%10(例如:…… 题解列表 2022年04月13日 0 点赞 0 评论 163 浏览 评分:9.9
课本上的习题 摘要:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int x; cin >> x;…… 题解列表 2024年01月01日 0 点赞 0 评论 93 浏览 评分:9.9
问题一“水仙花数”C语言 摘要:问题在于取位(个位,十位,百位) **/** 取商 **%** 取余 可以从个位开始或者百位开始,按个人喜好 #include …… 题解列表 2022年07月06日 0 点赞 0 评论 260 浏览 评分:9.9
二级C语言-平均值计算常规做法 小白 摘要:``` #include #include // 文件中含有pow函数 int main() { int a,b,c,x; scanf("%d",&x); { a=…… 题解列表 2022年08月02日 0 点赞 0 评论 519 浏览 评分:9.9
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:参考代码:#include<stdio.h> main() { int a,x=0,j,m; scanf("%d",&m); a=m; while(a!=0…… 题解列表 2020年08月28日 0 点赞 0 评论 547 浏览 评分:9.9
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:解题思路:暴力循环找出所有水仙花存入数组,设置标记,然后输入数据与数组中数据比较,数组中有该数标志为1无该数标志为0,最后根据标志输出0或1 ```c #include int main() …… 题解列表 2020年03月09日 0 点赞 0 评论 514 浏览 评分:9.9
一种较为代码较为简便的方式 摘要:参考代码: #include<stdio.h>#include<stdlib.h>#define cube(a) (a)*(a)*(a) #宏定义三次…… 题解列表 2023年05月31日 0 点赞 0 评论 65 浏览 评分:9.9