首页 > 代码库 > 【阿姆斯壮数 】
【阿姆斯壮数 】
/*阿姆斯壮数 说明:在三位的整数中,例如153可以满足1^3 + 5^3 + 3^3 = 153,这样的数称之为Armstrong数,试写出一程式找出所有的三位数Armstrong数。解法:Armstrong数的寻找,其实就是在问如何将一个数字分解为个位数、十位数、百位数......,这只要使用除法与余数运算就可以了,例如输入 input为abc,则:a = input / 100b = (input%100) / 10c = input % 10*/ #include <stdio.h>#include <stdlib.h>#include <math.h>int main(void){ int a, b, c; int input; printf("search Armstrong numbers in 999: \n"); for(input = 100; input <= 999; input++) { a = input / 100; b = (input % 100) / 10; c = input % 10; if(a * a * a + b * b * b + c * c * c == input) { printf("%d \n", input); } } printf("\n"); return 0;}
结果:
【阿姆斯壮数 】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。