摘要:
#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号