#include int max(int a,int b); //函数原型 void main() { int maxnum; maxnum=max(9,8); //函数调用 cout<=b) return a; else return b; }