科目名稱:程式設計 | 開課系所:資訊工程 學系 | 任課教師 |
吳坤熹 |
||
系所別: |
年級: |
學號: |
姓名: |
考試日期 |
2008.5.29 |
(考試時間: 9:50-10:00)
Open book; turn off computer & mobile phone
void CSketcherView::OnDraw(CDC* pDC)
{
CSketcherDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
if (!pDoc)
return;
CRect Box(50, 50, 150, 150);
CPoint Start(50,50);
CPoint End(150,150);
pDC->Rectangle(&Box);
pDC->Arc(&Box, CPoint(50,100), CPoint(100,50));
}