题目请看我的《水仙花数题目(C++11)》
#include<iostream>
using namespace std;
int main()
{
? ? int n,a,b,c;
? ? cin>>n;
? ? c=n%10;
? ? b=n/10%10;
? ? a=n/100;
? ? if(c*c*c+b*b*b+a*a*a==n)
? ? {
? ? ?? ?cout<<"it is daffodil"<<endl;
?? ?}
?? ?else
?? ?{
?? ??? ?cout<<"it is not daffodil"<<endl;
?? ?}
? ? return 0;
}