2019年6月23日

5.3

摘要: #include<stdio.h>int max2(int a,int b){if(a>=b)return a;else return b;}int max4(int a,int b,int c,int d){int x,y,z;x=max2(a,b);y=max2(c,d);z=max2(x,y) 阅读全文

posted @ 2019-06-23 12:42 an同学 阅读(145) 评论(0) 推荐(0)

导航