下列程序的输出结果如下:x, y=10,26x, y=26,26x, y=25,25请将程序填充完整#include < iostream>using namespace std;void f2((1)____){ int z = x; x = y; y = z;}void main(){ int x = 10, y = 26; cout << "x, y=" << x << "," << y << endl; f2(x,y); cout << "x, y=" << x << "," << y << endl; x++; y--; f2(x,y); cout << "x, y=" << x << "," << y << endl;}
查看答案
下列程序的输出结果如下:x, y=10,26x, y=26,10x, y=9,27请将程序填充完整#include < iostream>using namespace std;void f2((1)________){ int z = x; x = y; y = z;}void main(){ int x = 10, y = 26; cout << "x, y=" << x << "," << y << endl; f2(x,y); cout << "x, y=" << x << "," << y << endl; x++; y--; f2(x,y); cout << "x, y=" << x << "," << y << endl;}
阅读下列程序,并写出输出结果。#includeusing namespace std;int f(int);void main(){ int i; for (i = 0; i<3; i++)cout << f(i) << ","; cout << endl;}int f(int a){ int b = 0; static int c = 3; b++; c++; return(a + b + c);}
阅读下列程序,并写出输出结果。#includeusing namespace std;int min(int a,int b){ return a
写出下面程序执行后的运行结果。#include< iostream>using namespace std;#define DEBUGvoid main(){ int a = 20, b =10, c; c = a / b;#ifdef DEBUG cout << a << "/" << b << "=";#endif cout << c;}