國立暨南國際大學 100 學年度第一學期小考試卷                   (考試時間: 14:10-14:20)
科目名稱:資訊系統 與網路導論 開課系所:資訊工程 學系 任課教師
吳坤熹
系所別:
年級:
學號:
姓名:
考試日期
2012.1.4
  1. (10%) 請問今天的「軟體工程與創意設計營 參賽成果展暨分享」活動,共有幾隊參展?


  2. (10%) 票選結果得票最高的前幾名,會有獎金?


  3. (10%) Determine whether the following code has syntax errors or not.  If it is correct, predict its output.  If it is incorrect, point out the mistake(s).
    // printf()
    #include <iostream>

    int main()
    {
        printf("%3d\n", 98);
        printf("%+3d\n", 98);
        printf("%03d\n", 98);
        printf("%-3d\n", 98);
        return 0;
    }