#include <iostream>
#include <Windows.h>
using namespace std;
inline int call(int a, int b) { //调用
return a+b;
}
int main(void) {
call(36, 54);
cout << call(36, 54) << endl;
system("pause");
return 0;
}
#include <iostream>
#include <Windows.h>
using namespace std;
inline int call(int a, int b) { //调用
return a+b;
}
int main(void) {
call(36, 54);
cout << call(36, 54) << endl;
system("pause");
return 0;
}