C语言训练-阿姆斯特朗数-题解(C语言代码) 摘要:解题思路:这个题目还行,就这个啥自恋数名字挺高级注意事项:没啥注意的参考代码:#include<stdio.h> int main() { int i,m;//定义中间变量 int a…… 题解列表 2021年02月08日 0 点赞 3 评论 524 浏览 评分:9.9
C语言训练-阿姆斯特朗数-->c的最简单理解,可以参考一下 摘要:### 解题思路 这个数没那么大,所以用int就好了,只需要判断一下i的位数是多少,然后求出每个位的立方并相加就好啦 **可以看下代码注释:** ```c #inclu…… 题解列表 2020年12月10日 0 点赞 0 评论 804 浏览 评分:9.9
C语言训练-阿姆斯特朗数-题解(C语言代码) 摘要:```c #include int main() { int i=2,hundred,ten,indi,sum; hundred = ten = indi = sum = 0; …… 题解列表 2020年07月19日 0 点赞 0 评论 768 浏览 评分:9.9
求大于1小于1000的阿姆斯特朗数 摘要:解题思路:拆解数字各个位上的数字,并求出立方和注意事项:无参考代码:#include <stdio.h>#include <math.h>int main() { for (int i = 1;…… 题解列表 2023年10月30日 0 点赞 0 评论 88 浏览 评分:9.9
阿姆斯特朗数(保证你会C++) 摘要:解题思路:我开始主要难点在于分离每一个数,有的有2个,有的有3个,建议写个每个数的处理函数,阶乘同理,都可以套用注意事项:参考代码:#include<iostream>using namespace …… 题解列表 2022年10月29日 0 点赞 0 评论 214 浏览 评分:9.9
不是说两个空格吗,两个空格过不了,只需要一个 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int arr[10]; for (int i = 0;…… 题解列表 2022年06月19日 0 点赞 0 评论 277 浏览 评分:9.9
1156: C语言训练-阿姆斯特朗数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int x=2; for(x=2;x<1000;x++) { int a=0,b=0,c=0; a=x/1…… 题解列表 2024年03月13日 0 点赞 0 评论 88 浏览 评分:9.9
C语言训练-阿姆斯特朗数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int a,b,c,d,e; for(a=2;a<1000;a+…… 题解列表 2021年11月12日 0 点赞 0 评论 344 浏览 评分:9.9
C语言训练-阿姆斯特朗数-题解(Python代码) 摘要:```python for i in range(2,1000): b = 0 s = i sum = 0 #得到各位数存放在列表(此处要定义a这个空列表) …… 题解列表 2020年12月21日 0 点赞 0 评论 445 浏览 评分:9.9
阿姆斯特朗数 摘要:注意事项:从小到大输出,数之间用两个空格分开但实际上只需要一个空格参考代码:#include<iostream>#include<math.h> using namespace std;int mai…… 题解列表 2022年04月28日 0 点赞 0 评论 278 浏览 评分:9.9