step_1_入门_ACM趣味题_4 水仙花数

acm.hdu.edu.cn/showproblem.php?pid=2010

#include
#include 
using namespace std;
int main(){
	std::ios::sync_with_stdio(false);
 	std::cin.tie(0); 
 	int m,n;
 	while(cin>>m>>n){
 		bool flag=false;
 		for(int i=m;i<=n;i++){
 			int num=i;
 			int a=num/100;
 			num%=100;
 			int b=num/10;
 			int c=num%10;
 			if(a*a*a+b*b*b+c*c*c==i){
 				if(flag)cout<<" "<

 

你可能感兴趣的:(2018年为准备CCF,CSP的第二遍刷题)