#include void max(int a,int b); //函数原型 void print(int n); //函数原型 void main() { max(2,7); } void max(int a,int b) //函数定义 { if(a>=b) print(a); //函数调用 else print(b); } void print(int n) //函数定义 { cout<