基础训练 特别的数字

特别的数字

#include<iostream>
using namespace std;
int main(){
	for(int i=100; i<=999; i++){
		int a=i/100; int b=(i%100)/10; int c=i%10;
		if(i==(a*a*a+b*b*b+c*c*c))
			cout<<i<<endl; 
	}
	return 0;
} 
posted @ 2019-01-24 21:06  A-Little-Nut  阅读(88)  评论(0编辑  收藏  举报