導航:首頁 > 宣傳策劃 > 管理學部開展校園導游之星活動策劃書

管理學部開展校園導游之星活動策劃書

發布時間: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求最近距離

閱讀全文

與管理學部開展校園導游之星活動策劃書相關的資料

熱點內容
江蘇道宏電子商務 瀏覽:966
飯店宴會營銷方案 瀏覽:349
餐飲企業如何開展網路營銷 瀏覽:353
品牌營銷注意哪些 瀏覽:854
促銷活動充200送200 瀏覽:78
組織培訓流程方案 瀏覽:321
脫貧行動培訓方案 瀏覽:764
2019年五四青年節活動策劃方案 瀏覽:557
新進幼兒教師培訓方案 瀏覽:727
電子商務中心經營范圍 瀏覽:544
教育機構培訓教師方案 瀏覽:457
鮮花網微信營銷方案 瀏覽:505
高郵誠信電子商務物流產業園 瀏覽:780
華師電子商務招生 瀏覽:950
社群營銷公司品牌故事 瀏覽:602
中職電子商務教材 瀏覽:806
求職意向市場營銷 瀏覽:812
校本培訓的實施方案 瀏覽:803
杭州做網路營銷的公司 瀏覽:117
c2c電子商務模式的分類 瀏覽:94