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