导航:首页 > 宣传策划 > 管理学部开展校园导游之星活动策划书

管理学部开展校园导游之星活动策划书

发布时间:2020-12-24 04:16:01

『壹』 校园导游系统 JAVA实现~~要有界面的~

已发··请查收··
楼上···他不是已经出了价了嘛··

『贰』 谁了解咱学校导游翻译研究”这一方向

Qualifications for being a good guide-interpreter

Tourism is a comprehensive economic undertaking and it plays a very important role in a country's economic construction; and it is at the same time a part of foreign relations work, as it offers an effective means for people-to-people diplomacy. Failure or success of tourism instry, therefore, bears on a country's image abroad in terms of its political reputation and of the opportunity of earning foreign exchange for a country's economic construction. Tourism in China started from scratch, although China surpasses those countries where tourism is well-developed in terms of resources of tourism. China's huge amount of cultural relics, its scenery known far and wide for its quiet beauty, the splendor of its ancients art and culture, its traditional multi-national arts and crafts and food prepared on various local recipes-all these have attracted foreign visitors for a long time. However, as tourism is China has just developed, there aren't sufficent transportation and other facilities. In addition, we still have a lot of problems to be solved in the management of tourism, in the quality of service and in the quality and English level of Guide-interpreters. With all these problems graally settled, China's tourism will surely advance to a high stage of development along the pattern uniquely Chinese.

In fact, Guide-interpreters are in direct service of foreign visitors and their quality and service play a decisive role in the development of tourism instry in China. Their speech and behaviour directly influence foreign visitor's mood in travelling. In a sense, the function of a four Guide is similar to that of a diplomat of the people. His or her ty is to try his or her utmost to make foreign visitors enjoy their trip in China and at the same time let them understand China's history, geography, people's customs and its cultural tradition better through their interpreting and efforts. Therefore, a tour Guide's service is the key link of tourism instry. The Guide should be the spirit of mountains and rivers, envoy of friendship,desseminator of culture and civilization of the motherland and publicity agent of the new idea and morale of socialism. If a tour Guide's service is satisfactory, foreign visitors would have a good impression of China and the Travel Agency, so that they would plan their second trip to China for other sights and furthermore, they would urge others to come along to see China with their own eyes. A travel Agency would, of course, employ ad many such competent and qualified interpreters as possible so ad to make their business thrive with each passing day. @U[1]UlsC|3

『叁』 有关推荐自己当学校导游的英语作文

您好,我看到抄您的问袭题很久没有人来回答,但是问题过期无人回答会被扣分的并且你的悬赏分也会被没收!所以我给你提几条建议:

一,你可以选择在正确的分类下去提问,这样知道你问题答案的人才会多一些,回答的人也会多些。

二,您可以到与您问题相关专业网站论坛里去看看,那里聚集了许多专业人才,一定可以为你解决问题的。

三,你可以向你的网上好友问友打听,他们会更加真诚热心为你寻找答案的,甚至可以到相关网站直接搜索.

四,网上很多专业论坛以及知识平台,上面也有很多资料,我遇到专业性的问题总是上论坛求解决办法的。

五,将你的问题问的细一些,清楚一些!让人更加容易看懂明白是什么意思!

谢谢采纳我的建议!

『肆』 怎样在校园导游系统中导入校园地图啊怎样在设计的校园导游程序中导入学校地图啊

用GIS控件课直接导入

『伍』 校园导游与导航问题

程序代码
#include <iostream.h>
const int n=5; //n表示校园图中顶点个数
const int e=5; //e表示校园图中路径
bool visited[n+1];
#define max 32767
class graph
{
public:

int arcs[n+1][n+1]; //领结矩阵
int a[n+1][n+1]; //距离
int path[n+1][n+1]; //景点
void floyd(graph &t,const int n);
void picture();
void creatp(graph &t);
void bfs(graph t);
};

void graph::picture()
{
cout<<" XXX大学导游图"<<endl;
cout<<"以下是学校的景点"<<endl;
cout<<" ****************************************************"<<endl;
cout<<" * 1.校园门口 2.教学楼 3.食堂 4.图书馆 5操场*"<<endl;
cout<<" ****************************************************"<<endl;
cout<<"以下是学校的路径图"<<endl;
cout<<" 3"<<endl;
cout<<" 1 *-------* 2 "<<endl;
cout<<" | 3 | "<<endl;
cout<<" | /| "<<endl;
cout<<" | / | "<<endl;
cout<<" 4 | 5/ | "<<endl;
cout<<" | / | "<<endl;
cout<<" | / | "<<endl;
cout<<" | / | "<<endl;
cout<<" |/ | 3 "<<endl;
cout<<" 3 *------*4-------*5 "<<endl;
cout<<" 2"<<endl;

cout<<"下面是景点与景点之间的距离和介绍:"<<endl;
cout<<"1.校园门口 --2.教学楼 距离为:3"<<endl;
cout<<"1.校园门口 --3.食 堂 距离为:4"<<endl;
cout<<"2.教学楼 --4.图书馆 距离为:4"<<endl;
cout<<"2.教学楼 --3.食 堂 距离为:5"<<endl;
cout<<"3.食堂 --4.图书馆 距离为:3"<<endl;
cout<<"5.操场 --4.图书馆 距离为:3"<<endl;

//校园图
}

void graph::creatp(graph &t)
{
int i,j;
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
if(i==j)t.arcs[i][j]=0; //景点一样则距离为0
else t.arcs[i][j]=max; //i不等于j时
t.arcs[1][2]=3;
t.arcs[2][1]=3;
t.arcs[2][4]=4;
t.arcs[4][2]=4;
t.arcs[3][1]=4;
t.arcs[1][3]=4;
t.arcs[3][2]=5;
t.arcs[2][3]=5;
t.arcs[3][4]=3;
t.arcs[4][3]=3;
t.arcs[4][5]=3;
t.arcs[5][4]=3;
//把景点跟距离用一个二围数组存储下来
}

void graph::floyd(graph &t,const int n)
{
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
{
t.a[i][j]=t.arcs[i][j]; //把距离付值给a.[i][j]
if((i!=j)&&(a[i][j]<max))
t.path[i][j]=i;
else t.path[i][j]=0;
}
for(int k=1;k<=n;k++)
{
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
if(t.a[i][k]+t.a[k][j]<t.a[i][j])
{
t.a[i][j]=t.a[i][k]+t.a[k][j];
t.path[i][j]=t.path[k][j];
}
}

}

void graph::bfs(graph t)
{

int j,i; //f,r分别为队列头,尾指针
char ch;
cout<<"请输入想去的地方:";
cin>>i;
while(i<=5)
{
if(i==1)cout<<"这里就是你要去的地方拉!!"<<endl<<endl;

else
{
for(j=1;j<=n;j++)
{
if(i!=j)
{
cout<<"距离为"<<t.a[i][j]<<": ";
int next=t.path[i][j];
cout<<j;
while(next!=i)
{
cout<<"--"<<next;
next=t.path[i][next];
}
cout<<"--"<<i<<endl;
}
}
cout<<"需要我推荐一条最佳路径供你返回吗?(y/n):";

}
cin>>ch;
if(ch=='y')
{
if(i==2) cout<<"2--4--3--1"<<endl;
if(i==3) cout<<"3--2--1或者3--4--2--1"<<endl;
if(i==4) cout<<"4--1"<<endl;
if(i==5) cout<<"5--4--1"<<endl;
cout<<"你还想去别的地方吗?(y/n)";
cin>>ch;
if(ch=='y') {cout<<"请输入想去的地方:"; cin>>i;}
if(ch!='y')
{
cout<<" *****退出程序*****"<<endl;
break;
}
}
else
{
break;
}

}

}

void main()
{

graph t;
t.picture();
t.creatp(t);
t.floyd(t,n);
t.bfs(t);

}

『陆』 一、设计一个校园导游程序,为来访的客人提供信息查询服务。 要求:(1)设计学校的校园平面图,所含景点

#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#define Max 20
#define Init_Length 10000
void shortestdistance();
void print()
{
printf(" 欢迎您来到XX大学\n");
printf(" ******\n");
printf(" 祝您旅途愉快\n");
printf("以下是您可能要前往的地方\n");
printf("1 主楼 \n");
printf("2 步行广场 \n");
printf("3 图书馆 \n");
printf("4 芙蓉湖 \n");
printf("5 嘉庚南区 \n");
printf("6 北区食堂 \n");
printf("7 中区食堂 \n");
printf("8 囊萤园区 \n");
printf("9 映雪园区 \n");
printf("10 芙蓉园区 \n");
printf("11 凌云园区 \n");
printf("12 博学园区 \n");
printf("13 操场 \n");
printf("功能1.景点查询请输入 i\n");
printf("功能2.查询最短路径请输入 s\n");
printf("功能3.退出系统请输入 e\n");
printf("请输入您的选择:");
}

void introce()
{
int a;
printf("请输入景点编号:");
scanf("%d",&a);
getchar();
printf("\n");
while(a<1||a>13)
{
printf("ERROR ! 请输入数字 1 到 13:\n\n");
scanf("%d",&a);
}
switch(a)
{
case 1:
printf("1:主楼 一纵四横嘉庚风范,庄严而又活泼美丽\n\n");
break;
case 2:
printf("2:步行广场 美丽校园的核心\n\n");
break;
case 3:
printf("3:图书馆 文化交流的中心和同学们自习的地方\n\n");
break;
case 4:
printf("4:芙蓉湖 魅力的校园明珠\n\n");
break;
case 5:
printf("5:嘉庚南区 嘉庚学院学生\n\n");
break;
case 6:
printf("6:北区食堂 距离宿舍区最近,饭点拥挤度最高\n\n");
break;
case 7:
printf("7:中区食堂 距离教学楼最近,晚上有课的同学可以来此\n");
break;
case 8:
printf("8:囊萤园区 居住计算机和海环外文男生\n\n");
break;
case 9:
printf("9:映雪园区 居住软件和生物化学男生\n\n\n");
break;
case 10:
printf("10:芙蓉园区 居住管院经院女生\n\n");
break;
case 11:
printf("11:凌云园区 居住计算机和医学女生\n\n");
break;
case 12:
printf("12:博学园区 居住海外学生\n\n");
break;
case 13:
printf("13:操场 学生活动锻炼的好去处\n\n");
break;
}
printf("/n");
}

void main()
{
char k;
print();
scanf("%c",&k);
while((k!='i')&&(k!='e')&&(k!='s'))
{
getchar();
printf("ERROR 请输入 i 或 s 或 e\n");
scanf("%c",&k);
}
switch(k)
{
case 'i':
printf("进入景点查询:\n");
introce();
break;
case 's':
printf("进入最短路径查询:\n");
shortestdistance();
break;
case 'e':
exit(0);
}
}
void shortestdistance()
{
int i,v,w,v0,j;
int min;
int top[14]={0};
int cost[14][14];
int path[14][14];
int final[14]={0};
int D[14];
for(i=0;i<14;i++)
for(j=0;j<14;j++)
cost[i][j]=Init_Length;
cost[1][3]=cost[3][1]=10;
cost[3][5]=cost[5][3]=40;
cost[1][7]=cost[7][1]=10;
cost[3][7]=cost[7][3]=30;
cost[2][7]=cost[7][2]=20;
cost[2][6]=cost[6][2]=10;
cost[4][6]=cost[6][4]=10;
cost[4][13]=cost[13][4]=10;
cost[6][12]=cost[12][6]=20;
cost[12][8]=cost[8][12]=10;
cost[8][9]=cost[9][8]=10;
cost[6][9]=cost[9][6]=15;
cost[10][9]=cost[9][10]=10;
cost[6][10]=cost[10][6]=20;
cost[9][10]=cost[10][9]=10;
cost[9][11]=cost[11][9]=10;
printf("请输入您现在所在的位置:\n");
scanf("%d",&v0);
while(v0>13||v0<1)
{
printf("ERROR!请重新输入编号从1到13的数\n");
scanf("%d",&v0);
}
for(i=1;i<14;i++)
for(j=1;j<14;j++)
path[i][j]=0;
for(v=1;v<14;v++)
{

D[v]=cost[v0][v];
if(D[v]<Init_Length)
{
path[v][(++(top[v]))]=v0;
path[v][(++(top[v]))]=v;
}
}
D[v0]=0;final[v0]=1;
for(i=2;i<14;++i)
{
min=Init_Length;
for(w=1;w<14;++w)
{
if((final[w]==0)&&(D[w]<min))
{
v=w;min=D[w];
}}
final[v]=1;
for(w=1;w<14;++w)
{
if((final[w]==0)&&(min+cost[v][w]<D[w]))
{
D[w]=min+cost[v][w];
for(j=1;j<14;j++)
path[w][j]=path[v][j];
top[w]=top[v]+1;
path[w][(top[w])]=w;
}
}

}
printf("请输入你要去的地方:\n");
scanf("%d",&w);
printf("\n");
while(w>13||w<1)
{
printf("ERROR!输入错误,请重新输入编号从1到13\n");
scanf("%d",&w);
}
printf("最短路径为:\n");
for(i=1;path[w][i]!=0;i++)
printf("-->%d",path[w][i]);
printf("\n");
printf("最短路径的长度为: %d\n",D[w]);
}

『柒』 学校举办导游之星活动,要一个200字左右的宣传词,正式点,就是说为了什么办活动

当今的时代,旅游已经成为人们的生活的重要组成部分。《国务院关于加快回发展旅游业的意见》和《北答京市人民政府关于全面推进北京市旅游产业发展的意见》指出,在“十二五”期间,将旅游业培育成中国经济的重要支柱产业和人民群众更加满意的现代服务业,旅游业必将呈现更加迅猛的发展之势。举办导游之星活动,可以丰富旅游知识,提高大学生综合素质,活跃大学生业余生活,而且有助于大家在活动中更清醒地认识到自身的长处,将来有可能成为旅游业方面的优秀人才,好处是多方面的。希望大家珍惜这次机会,踊跃参与到活动中来,认识自我、发现自我、提升自我,愿我们这次有意义的活动也成为大家掌握未来命运的导游之星,为大家事业成功插上腾飞的翅膀。

『捌』 数据结构 校园导游系统的设计与实现(用c++实现)

#include <iostream.h>
#include<string.h>
#include <stdlib.h>
#include <fstream.h>
typedef struct Infor
{
char name[10];
char infor[100];
}Infor;
typedef struct
{ //图的定义
Infor vexs [20] ; //顶点表,用一维向量即可
int arcs[50][50]; //邻接矩阵
int vexnum, arcnum; //顶点总数,弧(边)总数

}Mgraph;

typedef struct
{
char password[6];
char n_password[6];

}PassWord;//密码结构体定义

int LocateVex(Mgraph &G,char a[10])//
{
for(int i=0;i<G.vexnum;i++)
{
if(strcmp(G.vexs[i].name,a)==0)
{
return i;
}
}
cout<<"输入有误!"<<endl;
return -1;
}

//////////////////////以上是头文件

#include "net.h"
#include <conio.h>//密码功能所需要调用的头文件

void Creategraph(Mgraph &G,PassWord &pw) //构造无向网
{
ifstream inFile("graph.txt");
char v1[10],v2[10];
int i,j,k,w;
inFile>>G.vexnum>>G.arcnum;
for(i=0;i<G.vexnum;i++)
{
inFile>>G.vexs[i].name;
inFile>>G.vexs[i].infor;
}
for(i=0;i<50;i++)
{
for(int j=0;j<50;j++)
{
G.arcs[i][j]=10000;
}
}
for(k=0;k<G.arcnum;k++)
{
inFile>>v1>>v2>>w;
i=LocateVex(G,v1);
j=LocateVex(G,v2);
if(i==j)
{
G.arcs[i][j]=0;
}
else
{
G.arcs[i][j]=w;
G.arcs[j][i]=G.arcs[i][j];
}
}
for(int m=0;m<6;m++)
{
inFile>>pw.password[m];
}
}

/////////////////////////////前台调用的函数/////////////////////////////////////

void infor(Mgraph &G)
{
char a[10];
int b=1;
while(b)
{
for(int i=0;i<G.vexnum;i++)
{
cout<<G.vexs[i].name<<endl;
}
cout<<"请输入要查找的景点信息"<<endl;
cin>>a;
for(i=0;i<G.vexnum;i++)
{
if(strcmp(G.vexs[i].name,a)==0)
{
cout<<G.vexs[i].infor<<endl;
b=0;
}

}
if(b!=0)
{
cout<<"输入错误请重新输入!!"<<endl;
}
cout<<"返回前台系统按0,继续查找按1"<<endl;
cin>>b;
}
}

void ShortestPath (Mgraph G)//最短路径
{
char a[10],d[10];
int b=1,i,j,v,v0,w;
int Dist[100],S[100],Path[100];
int n=G.vexnum;
while(b)
{
for(i=0;i<G.vexnum;i++)
{
cout<<G.vexs[i].name<<endl;
}
for(i=0;i<100;i++)
{
Dist[i]=9999;
S[i]=0;
Path[i]=-1;
}
cout<<"请输入要查询路径的两个景点"<<endl;
cin>>a;
cin>>d;
v0=LocateVex(G,a);
j=LocateVex(G,d);
for(v=0;v<n;v++)
{
S[v]=0;
Dist[v]=G.arcs[v0][v];
if(Dist[v]<9999)
Path[v]=v0;//v1是v的前趋
else
Path[v]=-1;//v无前趋
}//
Dist[v0]=0;
S[v0]=1;
for(i=1;i<n;i++)
{
int min=9999;
for(w=0;w<n;w++)
if(!S[w]&&Dist[w]<min)
{
v=w;
min=Dist[w];
}//w顶点离v1顶点更近
S[v]=1;
for(w=0;w<n;w++)//更新当前最短路径及距离
if(!S[w]&&(Dist[v]+G.arcs[v][w]<Dist[w]))
{
Dist[w]=Dist[v]+G.arcs[v][w];
Path[w]=v;
}//end if
}//end for
cout<<"距离为:"<<endl;
cout<<Dist[j]<<endl;
cout<<"要经过"<<endl;
int f=Path[j],e[100];
i=0;
while(f!=-1)
{
e[i]=f;
f=Path[f];
i++;
}
for(v=i-1;v>=0;v--)
{
cout<<G.vexs[e[v]].name<<"---->";
}
cout<<G.vexs[j].name<<endl;
cout<<"返回后台系统按0,继续删除按1"<<endl;
cin>>b;
}
}

void reception(Mgraph &G)//前台
{

int n;
while(1)
{
system("cls");//清屏
cout<<"*********************欢迎使用前台系统************************"<<endl;
cout<<"(1)景点信息查询"<<endl;
cout<<"(2)问路查询"<<endl;
cout<<"(0)返回上一级菜单"<<endl;
cin>>n;
switch(n)
{
case 1:
infor(G);
break;
case 2:
ShortestPath (G);
break;
case 0:
return;
break;
default:
cout<<"您的输入有误,任意键继续..."<<endl;
getch();

}
}
}

////////////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////后台调用的函数///////////////////////////////////
void WriteTXT(Mgraph G,PassWord pw)//将更改后的信息写如graph.txt
{
int i,j;
ofstream outFile("graph.txt");
if(!outFile)
{
cerr<<"cannot open my.txt"<<endl;
exit(1);
}
outFile<<G.vexnum<<" "<<G.arcnum<<endl;
for(i=0;i<G.vexnum;i++)
{
outFile<<G.vexs[i].name<<" "<<G.vexs[i].infor<<endl;
}

for(i=0;i<G.vexnum;i++)
{
for(j=0;j<G.vexnum;j++)
{
if(G.arcs[i][j]!=10000)
{
outFile<<G.vexs[i].name<<" "<<G.vexs[j].name<<" "<<G.arcs[i][j]<<endl;
G.arcs[j][i]=10000;
}
}
}
Creategraph(G,pw);
}
void ChangeP(Mgraph &G,PassWord pw)//修改一个已有景点的相关信息
{
char a[10];
int b=1,i;
while(b)
{
for(i=0;i<G.vexnum;i++)
{
cout<<G.vexs[i].name<<endl;
}
cout<<"请输入要修改的景点的信息"<<endl;
cin>>a;
for(i=0;i<G.vexnum;i++)
{
if(strcmp(a,G.vexs[i].name)==0)
{
cout<<G.vexs[i].infor<<endl;
cout<<"请输入该景点的修改后的信息"<<endl;
cin>>G.vexs[i].infor;
cout<<"修改成功!!!!"<<endl;
b=0;
}
}
if(b!=0)
{
cout<<"error!输入有误!"<<endl;
}
cout<<"保存请按1,不保存请按2"<<endl;
int c;
cin>>c;
if(c==1)
{
WriteTXT(G,pw);
}
cout<<"返回后台系统按0,继续修改按1"<<endl;
cin>>b;
}
}
void deleteP(Mgraph &G,PassWord pw)//删除景点信息
{
char a[10];
int b=1,i,j,k;
while(b)
{
for(i=0;i<G.vexnum;i++)
{
cout<<G.vexs[i].name<<endl;
}
cout<<"请输入要删除的景点的信息"<<endl;
cin>>a;
for(i=0;i<G.vexnum;i++)
{
if(strcmp(a,G.vexs[i].name)==0)
{
for(j=i;j<G.vexnum-1;j++)
{
G.vexs[j]=G.vexs[j+1];
for(k=0;k<G.vexnum-1;k++)
G.arcs[k][j]=G.arcs[k][j+1];
}
for(j=i;j<G.vexnum-1;j++)
{
for(k=0;k<G.vexnum-1;k++)
G.arcs[j][k]=G.arcs[j+1][k];
}
G.vexnum--;
G.arcnum=0;
for(i=0;i<G.vexnum;i++)
{
for(j=0;j<G.vexnum;j++)
{
if(G.arcs[i][j]!=10000)
G.arcnum++;
}
}
G.arcnum=G.arcnum/2;
b=0;
cout<<"删除成功!!!!"<<endl;
}
}
if(b!=0)
{
cout<<"输入有误!请看清楚!"<<endl;
}
cout<<"是否要保存?保存按1,不保存按2"<<endl;
int c;
cin>>c;
if(c==1)
{
WriteTXT(G,pw);
}
cout<<"返回后台系统按0,继续删除按1"<<endl;
cin>>b;
}
}

void deleteL(Mgraph &G,PassWord pw)//删除路径
{
char a[10],d[10];
int b=1,i,j;
while(b)
{
for(i=0;i<G.vexnum;i++)
{
for(j=0;j<G.vexnum;j++)
{
if(G.arcs[i][j]!=10000)
{
cout<<G.vexs[i].name<<" "<<G.vexs[j].name<<" "<<G.arcs[i][j]<<endl;
}
}
}
cout<<"请输入要删除的路径连接的两个景点名"<<endl;
cin>>a;
cin>>d;
i=LocateVex(G,a);
j=LocateVex(G,d);
if(G.arcs[i][j]!=10000)
{
G.arcs[i][j]=10000;
G.arcs[j][i]=10000;
b=0;
cout<<"删除成功!!"<<endl;
G.arcnum--;
}
if(b!=0)
{
cout<<"输入有误!!"<<endl;
}
cout<<"保存请按1,不保存请按2"<<endl;
int c;
cin>>c;
if(c==1)
{
WriteTXT(G,pw);
}
cout<<"返回后台系统按0,继续删除按1"<<endl;
cin>>b;
}
}
///////////////////////////////////选作//////////////////////////

void Add(Mgraph &G,PassWord &pw)//增加景点
{

cout<<"请输入景点名称:"<<endl;
cin>>G.vexs[G.vexnum].name;
cout<<"请输入景点信息:"<<endl;
cin>>G.vexs[G.vexnum].infor;

for(int i=0;i<G.vexnum;i++)
G.arcs[G.vexnum][i]=10000;
for(i=0;i<G.vexnum;i++)
G.arcs[i][G.vexnum]=10000;

G.arcs[G.vexnum][G.vexnum]=0;

G.vexnum++;

cout<<"增加成功!"<<endl;
cout<<endl;
WriteTXT(G,pw);
system("pause");system("cls");
}

////////////////////////////////////////////////
bool password(PassWord &pw)//判断密码
{
char p[6];
cout<<"请输入6位密码:"<<endl;
for(int e=0;e<6;e++)
{
p[e]=getch();
cout<<"*";
cout.flush();
}
cout<<endl;
for(e=0;e<6;e++)
{

if(p[e]!=pw.password[e])return false;
}
cout<<endl;
return true;
}

void backstage(Mgraph &G,PassWord pw)//后台函数
{
int n;
while(1)
{
system("cls");
cout<<"*********************欢迎使用后台系统************************"<<endl;
cout<<"(1)修改一个已有景点的相关信息"<<endl;
cout<<"(2)删除一个景点及其相关信息"<<endl;
cout<<"(3)删除一条路径"<<endl;
cout<<"(4)增加景点"<<endl;
cout<<"(0)返回上一级菜单"<<endl;
cin>>n;
switch(n)
{
case 1:
ChangeP(G,pw);
break;
case 2:
deleteP(G,pw);
break;
case 3:
deleteL(G,pw);
break;
case 4:
Add(G,pw);
break;
case 0:
return;
break;
default:
cout<<"您的输入有误,任意键继续..."<<endl;
getch();

}
}
}

////////////////////////////////////////////////////////////////////////////////////////////////

void main()//主函数
{
Mgraph G;
PassWord pw;
Creategraph(G,pw);
int n,m=1;
while(m)
{
system("cls");
cout<<"*********************欢迎使用北林游览系统************************"<<endl;
cout<<"(1)前台服务(游客身份登陆)"<<endl;
cout<<"(2)后台服务(管理员身份登陆)"<<endl;
cout<<"(0)退出"<<endl;
cin>>n;
switch(n)
{
case 1:
reception(G);
break;
case 2:
if(password(pw)==true)
{
backstage(G,pw);//后台函数,并调用
}
else
cout<<"密码输入错误!!";
break;
case 0:
m=0;
break;
default:
cout<<"您的输入有误,任意键继续..."<<endl;
getch();
}
}
}

『玖』 急求 c++编程求助 、校园导游咨询 【问题描述】 设计一个校园导游程序,为来访的客

结构体存景点信息,邻接矩阵存边,floyd求最近距离

阅读全文

与管理学部开展校园导游之星活动策划书相关的资料

热点内容
组织培训流程方案 浏览:321
脱贫行动培训方案 浏览:764
2019年五四青年节活动策划方案 浏览:557
新进幼儿教师培训方案 浏览:727
电子商务中心经营范围 浏览:544
教育机构培训教师方案 浏览:457
鲜花网微信营销方案 浏览:505
高邮诚信电子商务物流产业园 浏览:780
华师电子商务招生 浏览:950
社群营销公司品牌故事 浏览:602
中职电子商务教材 浏览:806
求职意向市场营销 浏览:812
校本培训的实施方案 浏览:803
杭州做网络营销的公司 浏览:117
c2c电子商务模式的分类 浏览:94
经济型酒店网络营销案例 浏览:639
银行app属于网络营销吗 浏览:433
救援队技能培训方案 浏览:400
联通五一活动策划方案 浏览:311
市场营销交流总结报告 浏览:62