國立暨南國際大學 100 學年度第一學期小考試卷
科目名稱:資訊系統
與網路導論 |
開課系所:資訊工程
學系 |
任課教師
|
吳坤熹
|
系所別:
|
年級:
|
學號:
|
姓名:
|
考試日期
|
2011.9.28
|
(考試時間: 14:15-14:30)
-
(10%) What will the following code display?
#include <iostream>
using std::cout;
using std::endl;
int main()
{
int a = 1, b = 2, c = 3;
cout << a + b * c << endl; //Precedence
c = --a =
++b;
//Associativity
cout << a << b << c << endl;
return 0;
}
-
(10%)
What will the following code display?
#include <iostream>
using std::cout;
using std::endl;
int main()
{
short a = 5, b = 2;
a <<= b;
cout << a << endl;
cout << (a<<=b) << endl;
return 0;
}