所谓水仙花数是指一个三位数,它的每位数字的立方之和等于该数。 以下函数用于判断参数 n 是否为水仙花数,若为水仙花数,函数返回 true ,否则返回 false 。请填空。 #include using namespace std; bool fun(int n) { int a,b,c; a = n%10 ; b = n/10%10; c = n/100%10; if ( n == a*a*a + b*b*b + c*c*c ) return true; else 【 1 】 ; } int main() { int num; cout< 输入一个三位正整数: "; cin>>num; if( 【 2 】 ) cout< 是水仙花数 \n"; else cout< 不是水仙花数 \n"; return 0; }