國立暨南國際大學 101 學年度第二學期小考試卷                   (考試時間: 14:10-14:20)
科目名稱:程式設計 開課系所:資訊工程 學系 任課教師
吳坤熹
系所別:
年級:
學號:
姓名:
考試日期
2013.5.21
  1. (10%) If we replace the OnDraw() function in P.953 as below, what result will be shown on the screen after you run the program?  Please specify the coordinates of endpoints of each segment, or the coordinates of centers and boundaries.

    void CSketcherView::OnDraw(CDC* pDC)
    {
        CSketcherDoc* pDoc = GetDocument();
        ASSERT_VALID(pDoc);
        if (!pDoc)
            return;

        for (int i=1; i<=3; i++)
            pDC->Rectangle(i*50, i*50, (i+2)*50, (i+2)*50);
            // Note the default background is white.
        pDC->SetROP2(R2_NOTXORPEN);
        for (int i=4; i<=6; i++)
            pDC->Rectangle(i*50, i*50, (i+2)*50, (i+2)*50);
    }