摘要:
#include <stdio.h> int fun(int x) { int a, b, c; a = x / 100; b = x % 100 / 10; c = x % 10; if (x == a * a * a + b * b * b + c * c * c) return 1; else 阅读全文
posted @ 2019-11-27 16:55
木子欢儿
阅读(2680)
评论(0)
推荐(0)
摘要:
#include <stdio.h> int max(int x,int y,int z) { if(x>=y) if(x>=z) return x; else return z; else if(y>=z) return y; else return z; } main() { int a,b,c 阅读全文
posted @ 2019-11-27 16:06
木子欢儿
阅读(3155)
评论(0)
推荐(0)
摘要:
#include <stdio.h> int max(int x,int y) { if(x>=y) return x; else return y; } main() { int a,b; printf("请输入2个数字:\n"); scanf("%d%d",&a,&b); printf("最大值 阅读全文
posted @ 2019-11-27 15:59
木子欢儿
阅读(1504)
评论(0)
推荐(0)

浙公网安备 33010602011771号