下列c++程序的输出是: #include &ltiostream&g...
发布于 2022-03-03 17:35:53
下列c++程序的输出是:
#include <iostream> using namespace std int main( ) { int x = 10 int& ref = x ref = 20 cout << "x= " << x << endl x = 30 cout << "ref=" << ref << endl
输出结果x =(), ref =()
关注者
0
被浏览
43