以前那個是輸入一堆數據,找最大那個,此次是更簡單的版本,求兩個數的最大值。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); }