南京地铁售票的C++实现
更新时间:2023-12-19 23:44:01 阅读量: 教育文库 文档下载
#include
HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE);
char start[80],end[80];//保存当前站点和目的站点的数组 int GetCurX() { }
int curX;
HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO bInfo; GetConsoleScreenBufferInfo(hout,&bInfo); curX=bInfo.dwCursorPosition.X; return curX;
int GetCurY() { int curY; }
HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO bInfo; GetConsoleScreenBufferInfo(hout,&bInfo); curY=bInfo.dwCursorPosition.Y; return curY;
void GotoXY(int x,int y) {
HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE); COORD pos; pos.X=x;
pos.Y=y;
SetConsoleCursorPosition(hout,pos);
}
void Move() {
HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE); HANDLE hin=GetStdHandle(STD_INPUT_HANDLE); INPUT_RECORD mouseRec; DWORD res; for(;;) {
ReadConsoleInput(hin,&mouseRec,1,&res);
SetConsoleCursorPosition(hout,mouseRec.Event.MouseEvent.dwMousePosition); if(mouseRec.Event.MouseEvent.dwEventFlags==0)
}
}
{ }
if(mouseRec.Event.MouseEvent.dwButtonState==0) { break; }
void draw_picture() {
SetConsoleTextAttribute(hout,0x0E);//亮黄色 GotoXY(0,0);cout<<\〖南京地铁运营线路图〗\//画一号线路图,包括南延线
SetConsoleTextAttribute(hout,0x0A);//亮绿色 GotoXY(35,33);cout<<\南京地铁一号线\GotoXY(40,1);cout<<\⊙奥体中心\GotoXY(40,2);cout<<\┃\
SetConsoleTextAttribute(hout,0xE9); GotoXY(40,3);cout<<\●元通\
SetConsoleTextAttribute(hout,0x0A); GotoXY(40,4);cout<<\┃\
GotoXY(40,5);cout<<\⊙中胜\GotoXY(40,6);cout<<\┃\
GotoXY(40,7);cout<<\⊙小行\GotoXY(40,8);cout<<\┃\
SetConsoleTextAttribute(hout,0xB9); GotoXY(40,9);cout<<\◆安德门\SetConsoleTextAttribute(hout,0x0A); GotoXY(40,10);cout<<\┃\GotoXY(40,11);cout<<\⊙中华门\GotoXY(40,12);cout<<\┃\GotoXY(40,13);cout<<\⊙三山街\GotoXY(40,14);cout<<\┃\GotoXY(40,15);cout<<\⊙张府园\GotoXY(40,16);cout<<\┃\SetConsoleTextAttribute(hout,0xE9); GotoXY(40,17);cout<<\●新街口\SetConsoleTextAttribute(hout,0x0A); GotoXY(40,18);cout<<\┃\
GotoXY(40,19);cout<<\⊙珠江路\GotoXY(40,20);cout<<\┃\
GotoXY(40,21);cout<<\⊙鼓楼\GotoXY(40,22);cout<<\┃\
GotoXY(40,23);cout<<\⊙玄武门\GotoXY(40,24);cout<<\┃\
GotoXY(40,25);cout<<\⊙新模范马路\GotoXY(40,26);cout<<\┃\
GotoXY(40,27);cout<<\⊙南京站\GotoXY(40,28);cout<<\┃\
GotoXY(40,29);cout<<\⊙红山动物园\GotoXY(40,30);cout<<\┃\
GotoXY(40,31);cout<<\⊙迈皋桥\/*南延线*/
GotoXY(3,8);cout<<\南京地铁一号线南延线\
GotoXY(2,9);cout<<\┏━━━━━━━━━━━━━━━━━━\GotoXY(2,10);cout<<\⊙天隆寺\GotoXY(2,11);cout<<\┃\
GotoXY(2,12);cout<<\⊙软件大道\GotoXY(2,13);cout<<\┃\
GotoXY(2,14);cout<<\⊙花神庙\GotoXY(2,15);cout<<\┃\
GotoXY(2,16);cout<<\⊙南京南站\GotoXY(2,17);cout<<\┃\
GotoXY(2,18);cout<<\⊙双龙大道\GotoXY(2,19);cout<<\┃\
GotoXY(2,20);cout<<\⊙河定桥\GotoXY(2,21);cout<<\┃\GotoXY(2,22);cout<<\⊙胜太路\GotoXY(2,23);cout<<\┃\GotoXY(2,24);cout<<\⊙百家湖\GotoXY(2,25);cout<<\┃\
GotoXY(2,26);cout<<\⊙小龙湾\GotoXY(2,27);cout<<\┃\
GotoXY(2,28);cout<<\⊙竹山路\GotoXY(2,29);cout<<\┃\
GotoXY(2,30);cout<<\⊙天印大道\GotoXY(2,31);cout<<\┃\
GotoXY(2,32);cout<<\⊙龙眠大道\GotoXY(2,33);cout<<\┃\GotoXY(2,34);cout<<\⊙南医大\GotoXY(2,35);cout<<\┃\
GotoXY(2,36);cout<<\⊙南京交院\GotoXY(2,37);cout<<\┃\
GotoXY(2,38);cout<<\⊙中国药科大学\//画二号线路图
SetConsoleTextAttribute(hout,0x0C);//亮红色 GotoXY(60,1);cout<<\南京地铁二号线\GotoXY(38,3);cout<<\━\
GotoXY(28,3);cout<<\⊙雨润大街\GotoXY(26,3);cout<<\━\GotoXY(18,3);cout<<\⊙油坊桥\GotoXY(46,3);cout<<\━━━━━━━\GotoXY(60,3);cout<<\┓\GotoXY(60,4);cout<<\⊙奥体东\GotoXY(60,5);cout<<\┃\
GotoXY(60,6);cout<<\⊙兴隆大街\GotoXY(60,7);cout<<\┃\
GotoXY(60,8);cout<<\⊙集庆门大桥\GotoXY(60,9);cout<<\┃\
GotoXY(60,10);cout<<\⊙云锦路\GotoXY(60,11);cout<<\┃\
GotoXY(60,12);cout<<\⊙莫愁湖\GotoXY(60,13);cout<<\┃\GotoXY(60,14);cout<<\⊙汉中门\GotoXY(60,15);cout<<\┃\
GotoXY(60,16);cout<<\⊙上海路\
GotoXY(48,17);cout<<\━━━━━━┛\
GotoXY(20,17);cout<<\┏━━━━━━━━━\GotoXY(20,18);cout<<\⊙大行宫\GotoXY(20,19);cout<<\┃\GotoXY(20,20);cout<<\⊙西安门\GotoXY(20,21);cout<<\┃\
GotoXY(20,22);cout<<\⊙明故宫\GotoXY(20,23);cout<<\┃\
GotoXY(20,24);cout<<\⊙苜蓿园\GotoXY(20,25);cout<<\┃\
GotoXY(20,26);cout<<\⊙下马坊\GotoXY(20,27);cout<<\┃\
GotoXY(20,28);cout<<\⊙孝陵卫\GotoXY(20,29);cout<<\┃\GotoXY(20,30);cout<<\⊙钟灵街\GotoXY(20,31);cout<<\┃\GotoXY(20,32);cout<<\⊙马群\GotoXY(20,33);cout<<\┃\GotoXY(20,34);cout<<\⊙金马路\GotoXY(20,35);cout<<\┃\
GotoXY(20,36);cout<<\⊙仙鹤门\
}
GotoXY(20,37);cout<<\┃\
GotoXY(20,38);cout<<\⊙学则路\GotoXY(20,39);cout<<\┃\
GotoXY(20,40);cout<<\⊙仙林中心\GotoXY(30,40);cout<<\━\
GotoXY(32,40);cout<<\⊙羊山公园\GotoXY(42,40);cout<<\━\
GotoXY(44,40);cout<<\⊙南大仙林校区\GotoXY(58,40);cout<<\━\GotoXY(60,40);cout<<\⊙经天路\SetConsoleTextAttribute(hout,15);
GotoXY(90,4);cout<<\注意:1~8站:2元 9~12站:3元 12站以上:4元\GotoXY(90,6);cout<<\当前站名:\
GotoXY(90,8);cout<<\目的站名:\
GotoXY(90,10);cout<<\请点击下面选择购票张数:\SetConsoleTextAttribute(hout,0xDF); GotoXY(90,12);cout<<\SetConsoleTextAttribute(hout,15);
GotoXY(90,16);cout<<\请开始投币!\
GotoXY(90,18);cout<<\请点击下面选择面值:\SetConsoleTextAttribute(hout,0xDF);
GotoXY(90,20);cout<<\元,5元,10元,20元\SetConsoleTextAttribute(hout,15); GotoXY(90,24);cout<<\应付款数:\GotoXY(90,26);cout<<\已付款数:\GotoXY(90,28);cout<<\找零:\for(int i=2;i<=40;i++) { GotoXY(85,i);cout<<\}
SetConsoleTextAttribute(hout,0x0B);
void main() {
char Line1[][16]={\奥体中心\元通\中胜\小行\安德门\中华门\三山街\张府园\新街口\珠江路\鼓楼\玄武门\新模范马路\南京站\红山动物园\迈皋桥\ char Line1_ny[][16]={\安德门\天隆寺\软件大道\花神庙\南京南站\双龙大道\河定桥\胜太路\百家湖\小龙湾\竹山路\天印大道\龙眠大道\南医大\南京交院\中国医科大学\
char Line2[][26]={\油坊桥\雨润大桥\元通\奥体东\兴隆大桥\集庆门大桥\云锦
路\莫愁湖\汉中门\上海路\新街口\大行宫\西安门\ \明故宫\苜蓿园\下马坊\孝陵卫\钟灵街\马群\金马路\仙鹤门\学则路\仙林中心\羊山公园\南大仙林校区\经天路\ int m,n,number_cur,number_des,s; //mumber_cur代表当前站点在数组中的号码,number_des代表目的站点在数组中的序号
int a,money,money_in=0,mianzhi; //a代表站点数
void Cur_Station();//当前站点 void Des_Station();//目地站点 draw_picture();
while(1)//选择当前站点和目的站点 {
Move();
Cur_Station(); Move();
Des_Station(); break;
}
while(1) {
Move();
//选择购票数
if(GetCurX()==90 && GetCurY()==12){GotoXY(111,10);cout<<\if(GetCurX()==92 && GetCurY()==12){GotoXY(111,10);cout<<\if(GetCurX()==94 && GetCurY()==12){GotoXY(111,10);cout<<\if(GetCurX()==96 && GetCurY()==12){GotoXY(111,10);cout<<\if(GetCurX()==98 && GetCurY()==12){GotoXY(111,10);cout<<\for(int i=0;i<=25;i++) {
if(strcmp(Line2[i],start)==0) number_cur=i,m=0; else {
for(int j=0;j<=15;j++)
if(strcmp(Line1[j],start)==0) number_cur=j,m=1; else { }
for(int l=0;l<=15;l++)
if(strcmp(Line1_ny[l],start)==0) number_cur=l,m=2;
}
}
for(i=0;i<=25;i++) { if(strcmp(Line2[i],end)==0) }
number_des=i,n=0; else { }
for(int j=0;j<=15;j++) if(strcmp(Line1[j],end)==0) else { }
for(int l=0;l<=15;l++)
if(strcmp(Line1_ny[l],end)==0) number_des=l,n=2; number_des=j,n=1;
//计算站点数
if(m==n)
a=fabs(number_cur-number_des); else { if(m==0&&n==1)
a=fabs(number_cur-2)+fabs(number_des-1)<=fabs(number_cur-10)+fabs(number_des-8)?fabs(n
umber_cur-2)+fabs(number_des-1):fabs(number_cur-10)+fabs(number_des-8);
if(m==0&&n==2)
a=number_des+3+fabs(number_cur-2)<=number_des+4+fabs(number_cur-10)?number_des+3+fabs(number_cur-2):number_des+4+fabs(number_cur-10);
if(m==1&&n==0)
a=fabs(number_des-2)+fabs(number_cur-1)<=fabs(number_des-10)+fabs(number_cur-8)?fabs(number_des-2)+fabs(number_cur-1):fabs(number_des-10)+fabs(number_cur-8); if(m==1&&n==2) a=fabs(number_cur-4)+number_des; if(m==2&&n==0)
a=number_cur+3+fabs(number_des-2)<=number_cur+4+fabs(number_des-10)?number_cur+3+fabs(number_des-2):number_cur+4+fabs(number_des-10); if(m==2&&n==1) a=fabs(number_des-4)+number_cur; }
if(a>=1 && a<=8) money=2*s;
}
if(a>=9 && a<=12)
money=3*s; if(a>=13) money=4*s;
GotoXY(99,24);cout< while(1)//付款,找零 { Move(); if(GetCurX()>=90 && GetCurX()<=92 && GetCurY()==20){GotoXY(109,18);cout<<\元 \ if(GetCurX()>=94 && GetCurX()<=96 && GetCurY()==20){GotoXY(109,18);cout<<\元\ if(GetCurX()>=98 && GetCurX()<=101 && GetCurY()==20){GotoXY(109,18);cout<<\元\ if(GetCurX()>=103 && GetCurX()<=106 && GetCurY()==20){GotoXY(109,18);cout<<\元\ } } money_in=money_in+mianzhi; if(money_in { GotoXY(99,26);cout< GotoXY(99,26);cout< GotoXY(95,28);cout< GotoXY(95,34);cout<<\欢迎下次乘坐南京地铁,祝您一路平安!\ void Cur_Station()//当前站点 { //一号线站点 if(GetCurX()>=40 && GetCurX()<=49 && GetCurY()==1){GotoXY(99,6); cout<<\奥体中心\ strcpy(start,\奥体中心\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==3){GotoXY(99,6); cout<<\元通\strcpy(start,\元通\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==5){GotoXY(99,6); cout<<\中胜\中胜\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==7){GotoXY(99,6); cout<<\小行\小行\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==9){GotoXY(99,6); cout<<\安德门 \安德门\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==11){GotoXY(99,6); cout<<\中华门\中华门\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==13){GotoXY(99,6); cout<<\三山街\三山街\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==15){GotoXY(99,6); cout<<\张府园\张府园\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==17){GotoXY(99,6); cout<<\新街口\新街口\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==19){GotoXY(99,6); cout<<\珠江路\珠江路\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==21){GotoXY(99,6); cout<<\鼓楼\鼓楼\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==23){GotoXY(99,6); cout<<\玄武门\玄武门\ if(GetCurX()>=40 && GetCurX()<=51 && GetCurY()==25){GotoXY(99,6); cout<<\新模范马路\新模范马路\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==27){GotoXY(99,6); cout<<\南京站\南京站\ if(GetCurX()>=40 && GetCurX()<=51 && GetCurY()==29){GotoXY(99,6); cout<<\红山动物园\红山动物园\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==31){GotoXY(99,6); cout<<\迈皋桥\迈皋桥\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==10){GotoXY(99,6); cout<<\天隆寺\天隆寺\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==12){GotoXY(99,6); cout<<\软件大道\软件大道\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==14){GotoXY(99,6); cout<<\花神庙\花神庙\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==16){GotoXY(99,6); cout<<\南京南站\南京南站\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==18){GotoXY(99,6); cout<<\双龙大道\双龙大道\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==20){GotoXY(99,6); cout<<\河定桥\河定桥\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==22){GotoXY(99,6); cout<<\胜太路\胜太路\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==24){GotoXY(99,6); cout<<\百家湖\百家湖\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==26){GotoXY(99,6); cout<<\小龙湾\小龙湾\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==28){GotoXY(99,6); cout<<\竹山路 \竹山路\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==30){GotoXY(99,6); cout<<\天印大道\天印大道\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==32){GotoXY(99,6); cout<<\龙眠大道\龙眠大道\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==34){GotoXY(99,6); cout<<\南医大\南医大\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==36){GotoXY(99,6); cout<<\南京交院\南京交院\ if(GetCurX()>=2 && GetCurX()<=15 && GetCurY()==38){GotoXY(99,6); cout<<\中国药科大//二号线站点 学\中国药科大学\ if(GetCurX()>=28 && GetCurX()<=37 && GetCurY()==3){GotoXY(99,6); cout<<\雨润大街\雨润大街\ if(GetCurX()>=18 && GetCurX()<=25 && GetCurY()==3){GotoXY(99,6); cout<<\油坊桥\油坊桥\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==4){GotoXY(99,6); cout<<\奥体东\奥体东\ if(GetCurX()>=60 && GetCurX()<=69 && GetCurY()==6){GotoXY(99,6); cout<<\兴隆大街\兴隆大街\ if(GetCurX()>=60 && GetCurX()<=71 && GetCurY()==8){GotoXY(99,6); cout<<\集庆门大桥\集庆门大桥\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==10){GotoXY(99,6); cout<<\云锦路\云锦路\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==12){GotoXY(99,6); cout<<\莫愁湖\莫愁湖\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==14){GotoXY(99,6); cout<<\汉中门\汉中门\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==16){GotoXY(99,6); cout<<\上海路\上海路\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==18){GotoXY(99,6); cout<<\大行宫 \大行宫\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==20){GotoXY(99,6); cout<<\西安门\西安门\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==22){GotoXY(99,6); cout<<\明故宫\明故宫\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==24){GotoXY(99,6); cout<<\苜蓿园\苜蓿园\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==26){GotoXY(99,6); cout<<\下马坊\下马坊\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==28){GotoXY(99,6); cout<<\孝陵卫\孝陵卫\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==30){GotoXY(99,6); cout<<\钟灵街 \钟灵街\ if(GetCurX()>=20 && GetCurX()<=25 && GetCurY()==32){GotoXY(99,6); cout<<\马群\马群\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==34){GotoXY(99,6); cout<<\金马路\金马路\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==36){GotoXY(99,6); cout<<\仙鹤门\仙鹤门\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==38){GotoXY(99,6); cout<<\学则路\学则路\ if(GetCurX()>=20 && GetCurX()<=29 && GetCurY()==40){GotoXY(99,6); cout<<\仙林中心if(GetCurX()>=32 && GetCurX()<=41 && GetCurY()==40){GotoXY(99,6); cout<<\羊山公园\仙林中心\ \羊山公园\ if(GetCurX()>=44 && GetCurX()<=55 && GetCurY()==40){GotoXY(99,6); cout<<\南大仙林校区\南大仙林校区\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==40){GotoXY(99,6); cout<<\经天路\经天路\} void Des_Station()//目地站点 { //一号线站点 if(GetCurX()>=40 && GetCurX()<=49 && GetCurY()==1){GotoXY(99,8); cout<<\奥体中心\奥体中心\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==3){GotoXY(99,8); cout<<\元通\元通\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==5){GotoXY(99,8); cout<<\中胜\中胜\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==7){GotoXY(99,8); cout<<\小行\小行\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==9){GotoXY(99,8); cout<<\安德门\安德门\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==11){GotoXY(99,8); cout<<\中华门\中华门\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==13){GotoXY(99,8); cout<<\三山街\三山街\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==15){GotoXY(99,8); cout<<\张府园\张府园\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==17){GotoXY(99,8); cout<<\新街口\新街口\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==19){GotoXY(99,8); cout<<\珠江路\珠江路\ if(GetCurX()>=40 && GetCurX()<=45 && GetCurY()==21){GotoXY(99,8); cout<<\鼓楼\鼓楼\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==23){GotoXY(99,8); cout<<\玄武门 \玄武门\ if(GetCurX()>=40 && GetCurX()<=51 && GetCurY()==25){GotoXY(99,8); cout<<\新模范马路\新模范马路\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==27){GotoXY(99,8); cout<<\南京站\南京站\ if(GetCurX()>=40 && GetCurX()<=51 && GetCurY()==29){GotoXY(99,8); cout<<\红山动物园\红山动物园\ if(GetCurX()>=40 && GetCurX()<=47 && GetCurY()==31){GotoXY(99,8); cout<<\迈皋桥\迈皋桥\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==10){GotoXY(99,8); cout<<\天隆寺\天隆寺\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==12){GotoXY(99,8); cout<<\软件大道\软件大道\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==14){GotoXY(99,8); cout<<\花神庙\花神庙\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==16){GotoXY(99,8); cout<<\南京南站\南京南站\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==18){GotoXY(99,8); cout<<\双龙大道\双龙大道\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==20){GotoXY(99,8); cout<<\河定桥\河定桥\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==22){GotoXY(99,8); cout<<\胜太路\胜太路\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==24){GotoXY(99,8); cout<<\百家湖\百家湖\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==26){GotoXY(99,8); cout<<\小龙湾\小龙湾\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==28){GotoXY(99,8); cout<<\竹山路\竹山路\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==30){GotoXY(99,8); cout<<\天印大道\天印大道\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==32){GotoXY(99,8); cout<<\龙眠大道\龙眠大道\ if(GetCurX()>=2 && GetCurX()<=9 && GetCurY()==34){GotoXY(99,8); cout<<\南医大\南医大\ if(GetCurX()>=2 && GetCurX()<=11 && GetCurY()==36){GotoXY(99,8); cout<<\南京交院\南京交院\ if(GetCurX()>=2 && GetCurX()<=15 && GetCurY()==38){GotoXY(99,8); cout<<\中国药科大学\中国药科大学\ //二号线站点 if(GetCurX()>=28 && GetCurX()<=37 && GetCurY()==3){GotoXY(99,8); cout<<\雨润大街\雨润大街\ if(GetCurX()>=18 && GetCurX()<=25 && GetCurY()==3){GotoXY(99,8); cout<<\油坊桥 \油坊桥\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==4){GotoXY(99,8); cout<<\奥体东\奥体东\ if(GetCurX()>=60 && GetCurX()<=69 && GetCurY()==6){GotoXY(99,8); cout<<\兴隆大街\兴隆大街\ if(GetCurX()>=60 && GetCurX()<=71 && GetCurY()==8){GotoXY(99,8); cout<<\集庆门大桥\集庆门大桥\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==10){GotoXY(99,8); cout<<\云锦路\云锦路\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==12){GotoXY(99,8); cout<<\莫愁湖\莫愁湖\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==14){GotoXY(99,8); cout<<\汉中门\汉中门\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==16){GotoXY(99,8); cout<<\上海路\上海路\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==18){GotoXY(99,8); cout<<\大行宫\大行宫\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==20){GotoXY(99,8); cout<<\西安门\西安门\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==22){GotoXY(99,8); cout<<\明故宫\明故宫\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==24){GotoXY(99,8); cout<<\苜蓿园\苜蓿园\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==26){GotoXY(99,8); cout<<\下马坊\下马坊\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==28){GotoXY(99,8); cout<<\孝陵卫\孝陵卫\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==30){GotoXY(99,8); cout<<\钟灵街\钟灵街\ if(GetCurX()>=20 && GetCurX()<=25 && GetCurY()==32){GotoXY(99,8); cout<<\马群\马群\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==34){GotoXY(99,8); cout<<\金马路\金马路\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==36){GotoXY(99,8); cout<<\仙鹤门\仙鹤门\ if(GetCurX()>=20 && GetCurX()<=27 && GetCurY()==38){GotoXY(99,8); cout<<\学则路\学则路\ if(GetCurX()>=20 && GetCurX()<=29 && GetCurY()==40){GotoXY(99,8); cout<<\仙林中心\仙林中心\ if(GetCurX()>=32 && GetCurX()<=41 && GetCurY()==40){GotoXY(99,8); cout<<\羊山公园\羊山公园\ if(GetCurX()>=44 && GetCurX()<=55 && GetCurY()==40){GotoXY(99,8); cout<<\南大仙林校 区\南大仙林校区\ if(GetCurX()>=60 && GetCurX()<=67 && GetCurY()==40){GotoXY(99,8); cout<<\经天路\经天路\}
正在阅读:
南京地铁售票的C++实现12-19
公司委托个人付款委托书(范本)03-26
有内涵的经典早安说说02-22
大学英语口语课程教学大纲(2)04-21
神州数码DCRS-5960_三层转发及ARP、ND操作.word06-20
浅谈小学生计算能力的培养(王静波)10-25
一道错题的启示作文400字06-12
模联主席用语10-11
我不喜欢早起作文400字06-30
- exercise2
- 铅锌矿详查地质设计 - 图文
- 厨余垃圾、餐厨垃圾堆肥系统设计方案
- 陈明珠开题报告
- 化工原理精选例题
- 政府形象宣传册营销案例
- 小学一至三年级语文阅读专项练习题
- 2014.民诉 期末考试 复习题
- 巅峰智业 - 做好顶层设计对建设城市的重要意义
- (三起)冀教版三年级英语上册Unit4 Lesson24练习题及答案
- 2017年实心轮胎现状及发展趋势分析(目录)
- 基于GIS的农用地定级技术研究定稿
- 2017-2022年中国医疗保健市场调查与市场前景预测报告(目录) - 图文
- 作业
- OFDM技术仿真(MATLAB代码) - 图文
- Android工程师笔试题及答案
- 生命密码联合密码
- 空间地上权若干法律问题探究
- 江苏学业水平测试《机械基础》模拟试题
- 选课走班实施方案
- C++
- 南京
- 售票
- 地铁
- 实现
- 小学一年级数学习题4:认数2
- 快速固化液体玻璃树脂
- 影响高职院校学生体育运动训练效果的因素及对策分析-最新教育资料
- 六年级语文模拟考试试题
- 新编日语第一册第17课详解
- 陕西省榆林育才中学高中历史 专题1 二 古代中国的手工业经济导学案1无答案人民版必修2
- 建设学习型党组织 争当司法工作排头兵
- 优秀教师表彰大会主持词开场白
- 药用化学题库及答案
- 起重机械吊具与索具安全管理制度
- 2018-2024年中国互联网+智慧校园市场深度研究与未来发展趋势报告(目录) - 图文
- DNA重组技术的基本工具习题
- 八年级英语上期末测试题
- 投资项目可行性研究 天津大学 课件整理版
- 福建莆田灯光节策划方案
- 六年级数学考试答题技巧
- 三年级下册英语教案-Unit 2 My Family Part B陕旅版
- 小初高学习江西省上饶市广丰一中2015—2016学年高一化学上学期第二次月考试题(重、平)
- 2015年迎新晚会策划书
- 2018 - 2019学年高中化学专题2.9盐类水解及四大守恒练习新人教版选修4