國立暨南國際大學 99 學年度第一學期小考試卷

科目名稱:資訊系統 與網路導論 開課系所:資訊工程 學系 任課教師
吳坤熹
系所別:
年級:
學號:
姓名:
考試日期
2010.11.17

(考試時間: 16:30-16:45)

  1. (10%) What will the following code display?

    #include <iostream>
    using std::cout;
    using std::endl;

    int main()
    {
        int m=5, n=3;
        m -= n -= 2;
        cout << m << ' ' << n << endl;
        return 0;
    }



  2. (10%) What will the following code display?

    #include <iostream>
    using std::cout;
    using std::endl;

    int main()
    {
        unsigned s = 555;
        int i = (s >> 4) & ~(~0 << 3);
        cout << i << endl;
        return 0;
    }


  3. (10%) What will the following code display?

    #include <iostream>
    using std::cout;
    using std::endl;

    int main()
    {
        int total, count = 6;
        total = --count + 3;
        cout << total << ' ' << count << endl;
        return 0;
    }