填空题

下列程序的输出结果是 ______ 。
#include <iostream>
using namespace std;
int main()

int i=5;
int &r=i;r=7;
cout <<i<<endl;
return 0;

【参考答案】

G