3097: 阅读题
[Creator : ]
Description
#include <iostream>
using namespace std;
int main(){
cout << "10 / 2" << endl;
cout << 2 + 7 << endl;
cout << 10 * 2 - 3 << endl;
cout << 6 / 4 + 9 << endl;
return 0;
}
请你阅读代码,回答以下问题:
1.这段程序的输出结果几行
2.第1行输出内容为
3.第2行输出内容为
4.第3行输出内容为
5.第4行输出内容为