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

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

(考試時間: 10:30-10:40)

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

    #include <iostream>

    int main()
    {
        int a = 2;
        int b;
        int c;
        b = a++, c=a++;
        std::cout << a << b << c << std::endl;
        return 0;
    }






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

    #include <iostream>
    using std::cout;

    int main()
    {
        const int max = 5;
        int j = 0;
        for (int i=0; i<max; i++)
        {
            for (j=1; j<=i; j++) cout << ' ';
            for (j=1; j<=max-i; j++) cout << '*';
            cout << '\n';
        }
        return 0;
    }