科目名稱:資訊系統 與網路導論 | 開課系所:資訊工程 學系 | 任課教師 |
吳坤熹 |
||
系所別: |
年級: |
學號: |
姓名: |
考試日期 |
2011.10.5 |
(考試時間: 14:15-14:35)
(10%) What will the following code display?
#include <iostream>
using std::cout;
using std::endl;
using std::cin;
int main()
{
short y = 1900;
bool leap = (y % 4 == 0) && ((y % 100 != 0) || (y% 400 == 0));
cout << "There are "
<< (leap?366:365)
<< " days in Year " << y << endl;
return 0;
}