题解 1156: C语言训练-阿姆斯特朗数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

很简单的python代码

摘要:解题思路:注意事项:参考代码:for i in range(2,1000):    total_sum = 0    array1 = list(str(i))    for digit in arr……

阿姆斯特朗数

摘要:解题思路:注意事项:hhh其实只用隔一个空格,被骗啦嘻嘻参考代码:#include<stdio.h>int main(){    int i,a,b,c,s;    for(i=2;i<1000;i+……

阿姆斯特朗数

摘要:注意事项:从小到大输出,数之间用两个空格分开但实际上只需要一个空格参考代码:#include<iostream>#include<math.h> using namespace std;int mai……