科目名稱:資訊系統 與網路導論 | 開課系所:資訊工程 學系 | 任課教師 |
吳坤熹 |
||
系所別: |
年級: |
學號: |
姓名: |
考試日期 |
2011.9.21 |
(考試時間: 16:30-16:45)
(10%) What will the following code display?
#include <iostream>
using std::cout;
using std::endl;
int main()
{
int total, count = 9;
total = --count + 2;
cout << total << ' ' << count << endl;
return 0;
}