比以前那個版本更簡單的C語言實現的比較大小

以前那個是輸入一堆數據,找最大那個,此次是更簡單的版本,求兩個數的最大值。spa

#include "stdafx.h"
#include <stdio.h>
int GetMax(int a ,int b){
if(a>b)
return a;
else 
return b;
}
void main(){
int x,y,max;
printf("請輸入兩個數值\n");
scanf_s("%d%d",&x,&y);
max=GetMax(x,y);
printf("最大值爲%d\n",max);
}
相關文章
相關標籤/搜索