-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle.cpp
More file actions
41 lines (40 loc) · 841 Bytes
/
google.cpp
File metadata and controls
41 lines (40 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include<iostream>
#include<conio.h>
#include<graphics.h>
#include<math.h>
int main() {
int gd =DETECT,gm;
initgraph(&gd,&gm,"c:\\tc\\bgi");
//setbkcolor(14);
//setcolor(6);
settextstyle(2,0,4);
outtextxy(180,130,"G");
//setcolor(5);
settextstyle(2,0,4);
outtextxy(120,120,"O");
//setcolor(6);
settextstyle(2,0,4);
outtextxy(300,120,"O");
//setcolor(5);
settextstyle(2,0,4);
outtextxy(250,130,"G");
//setcolor(2);
settextstyle(2,0,4);
outtextxy(360,160,"L");
//setcolor(3);
settextstyle(2,0,4);
outtextxy(310,130,"E");
//setcolor(9);
settextstyle(2,0,4);
//setcolor(8);
settextstyle(2,0,4);
outtextxy(110,250,"surf");
settextstyle(2,0,4);
//outtextxy(350,320,"Go AHEAD");
//setcolor(6);
//rectangle(130,210,450,210);
//rectangle(90,310,170,340);
//rectangle(360,320,510,320);
getch();
closegraph();
}