C语言之水仙花数

C语言学习记录之------求水仙花数,一个三位数,其各位数字立方和等于该数本身。

int main() {
	int num = 100, a, b, c, count=0;
	for (num;num <= 999;num++) {
		a = num / 100;  //百位数
		b = (num % 100) / 10;  // 十位数
		c = num % 10;  // 个位数
		if (num == pow(a, 3) + pow(b, 3) + pow(c, 3)) {
			printf("%d\t", num);
			count++;
			if (count % 5 == 0) {
				printf("\n");
			}
		}
	}
	return 0;
}

输出结果:
C语言之水仙花数

上一篇:JS 1-10 Math 常用的对象


下一篇:21206125-孙琪-九月二十一日 python语言的学习总结(四)