It was not the money but the work experience matters.A.B. C.D.
A. that
B. which
C. what
D. does
查看答案
Match the following words in Column A with their meanings in Column B.
定义函数,判定一个整数是否为水仙花数,是,返回1;否,返回0。在主函数中输入一个3位数的整数进行测试。定义函数fun(),功能是判定一个三位数是否为水仙花数,是,返回1;否,返回0。在主函数中测试:输入一个整数,判定该整数是否为水仙花。#include#includeint main(){int fun(int x);int a;printf("请输入一个三位数:\n");scanf("%d",());if( () )printf("%d是水仙花数\n",a);elseprintf("%d不是水仙花数\n",a);return 0;}int fun(int x){int a,b,c;a=x%10;b=x/10%10;c=x/100;if( () )return 1;elsereturn 0;}