c語言一些簡單的程序

三個數找最大值c++ #include <stdio.h> int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); int maxs=max(a,max(b,c)); printf("%d",maxs); } int max(int x,int y) { int t; t=x>y?x:y; retu
相關文章
相關標籤/搜索