填空题

下列程序的输出结果是 【9】 。 #include<iostream> using namespace std; int main(){ int i=3; int &r=i; r=5; cout<<i<<endl; return 0; }

【参考答案】

E