c语言:编写一个程序,在主函数中求109-999间的所有水仙花数,自定义fun函数实现判断一个数是

日期:2021-05-16 20:10:05 人气:1

c语言:编写一个程序,在主函数中求109-999间的所有水仙花数,自定义fun函数实现判断一个数是

#include<stdio.h>
int f(int n)
{
    int a=n /100;
    int b=n/10 % 10;
    int c=n %10;
&n
    A+
热门评论