1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#include <iostream>
#include <graphics.h>
#include <windows.h>
#include <conio.h>
using namespace std;
int main()
{
int gd = DETECT, gm;
initgraph(&gd,&gm,"C:\\TC\\BGI");
int LY = 700,circle_x=250,cy,circler=45;
setcolor(12);
settextstyle(GOTHIC_FONT , HORIZ_DIR , 47);
outtextxy(100 , 300 , "GAME");
getch();
cleardevice();
bar3d(100,300,255,255,255,1);
delay(2500);
}
|