通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下面程序的输出结果为()。
#include<iostream.h> void main() { int x; int &y=x;//变量引用 y=99; cout<<"x="<<x<<endl; }