#include <stdio.h> #include<stdlib.h> int main() { int max(int a,int b); int a, b; scanf("%d%d", &a, &b); printf("%d", max(a, b)); system("pause"); } int max(int a, int b) { if (a>b) return a; else return b; }
[此贴子已经被作者于2017-2-27 19:39编辑过]