科目名稱:資訊系統 與網路導論 | 開課系所:資訊工程 學系 | 任課教師 |
吳坤熹 |
||
系所別: |
年級: |
學號: |
姓名: |
考試日期 |
2009.11.11 |
(考試時間: 16:30-17:00)
#include <iostream>
int main() // Quiz 5-1: Understanding bitwise operators.
{
unsigned s = 318;
int i = (s >> 4) & ~(~0 << 3);
std::cout << i;
}
#include <iostream>
using std::cout;
int main() {
int n = 22;
cout << ++n ;
cout << n++ << "\n";
}