18. 編寫函數:輸入4個整數,找出其中最小的數。用函數的嵌套調用來處理。

編寫函數:輸入4個整數,找出其中最小的數。用函數的嵌套調用來處理。 #include<stdio.h> int max2(int a,int b) { return a<b?a:b; } int max4(int a,int b,int c,int d) { int max; max=max2(a,b); max=max2(max,c); m
相關文章
相關標籤/搜索