#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include<conio.h>
int main(void)
{
int gdriver = DETECT, gmode;
initgraph(&gdriver, &gmode, "C:\\TC\\bgi");
circle(150, 150, 20);
circle(141,146,5);
circle(160,146,5);
arc(150,156,215,340,6);
line(150,170,150,240);
line(150,240,110,300) ;
line(150,240,190,300);
line(150,180,100,180);
line(150,180,200,180);
line(300,170,2000,170);
line(300,170,400,100);
line(400,100,500,170);
line(500,170,800,50);
arc(500,200,45,135,70);
getch();
closegraph();
return 0;
}
A blog which has various codes and other descriptions from all fields of Computer Science and other domains.
Friday, 19 February 2016
Scenery using graphics in C++
Labels:
graphics
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment