作业1:输入两个变量,输出两个变量的最大值。要求:使用C++语言,使用max函数完成求最大值的操作。 #include int max(int x, int y) { return (x>y?x:y);} int main(int argc, char* argv[]) { int a,b; couta>>b; couta; return 0;