#include "stdafx.h" //#include<stdio.h> int max(int a, int b) { int temp; if(a > b) { temp = a; } else { temp = b; } return temp;
確定! 回上一頁