?? dynpoint.cpp
字號:
// Borland C++ - (C) Copyright 1991 by Borland International
// DPOINT.CPP -- exercise in Getting Started
#include <iostream.h>
#include <graphics.h>
#include <conio.h>
#include "figures.h"
int main()
{
// Assign pointer to dynamically allocated object; call constructor
Point *APoint = new Point(50, 100);
// initialize the graphics system
int graphdriver = DETECT, graphmode;
initgraph(&graphdriver, &graphmode, "..\\bgi");
// Demonstrate the new object
APoint->Show();
cout << "Note pixel at (50,100). Now, hit any key...";
getch();
delete APoint;
closegraph();
return(0);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -