标签:string cout int main ace iostream include end return
#include <iostream>
#include <cstring>
using namespace std;
int max(int a,int b){
return a > b ? a: b;
}
int main() {
int (*func)(int,int);
func = max;
int a = 10,b=11;
cout << (*func)(a,b) << endl;
}
标签:string cout int main ace iostream include end return
原文地址:https://www.cnblogs.com/niconico-girl/p/9690374.html