⑴ 題目:旅遊景點信息管理系統設計 c語言 求高手 程序
你什麼時候要?我可以做,扣扣1718539604。但我周六前要做一個客戶信息的東西,所以你若很急的話就不行了。做你這個大概半天,所以最早這周日能給你。
⑵ 旅遊管理系統的C語言程序設計!急用!內容包括旅遊線路查詢,報價,導游查詢,還有旅遊人員信息登記及查詢
你好 我們說旅遊酒店方面是離不開英語的,你CET-4最好考過了
那如果說沒有精力再考CET-6 可以注重口語的提高 這方面我們有初級口譯 中級口譯
旅遊包括酒店的,所以你可以考張餐飲中級證
如果你要朝其他方面發展,那麼你可以關注下會計證,市場營銷都是比較熱門的。。。。
因為我不知道你以後朝哪個方向發展,,,所以最好你先確定自己的防線,然後再考證書,畢竟證書太多了,,,考對以後發展有利的證書比較好。
我在江蘇最好的旅遊學校任教,我們學校的同學基本都會考餐飲證和導游證。除此之外,有的還考了PETS。。。。這些都是最基本的,考了這些再根據興趣和工作需要考別的吧~~
⑶ 急需C語言程序設計源代碼,做一個景點旅遊咨詢系統!
#include<graphics.h>
#include<stdio.h>
#include<stdlib.h>
#include<alloc.h>
#include<math.h>
main()
{
void *ptr;
int gd=DETECT;
int gm;
float i;
initgraph(&gd,&gm,"d:\\tc");
setactivepage(1);
setcolor(RED);
setfillstyle(1,14);
fillellipse(10,10,10,10);
ptr=malloc(imagesize(0,0,20,20));
getimage(0,0,20,20,ptr);
randomize();
setactivepage(0);
for (i=0;i<3000;i++)
putpixel(random(640),random(480),random(15));
for (i=0;i<6.28*4;i=i+0.005)
{
putimage(300+8*(cos(i)+i*sin(i)),240+6*(sin(i)-i*cos(i)),ptr,COPY_PUT);
putimage(300+8*(cos(i)+i*sin(i)),240+6*(sin(i)-i*cos(i)),ptr,COPY_PUT);
if (kbhit())
break;
delay(10);
}
getch();
closegraph();
}
vc++6.0測試通過
⑷ 用C語言完成題目為《旅遊景點資源管理系統》的課程設計
書店、食堂服務員)數量的合理配置研究; 、西安市旅遊景點經典路線的設計;(高校聯...寫作格式如下: 1、研究報告 研究報告是《課程設計》的主要成果,應反映研究的內容和...
⑸ C語言程序設計實驗報告題目七:旅遊景點信息管理系統設計 旅遊景點信息包括:省份,景點種類(如:人
旅遊景點信息包括:省份,景點種類(如:人文景觀、自然山水、歷史遺跡等等),景點名稱,景點簡介,景點門票價格等(景點名稱不重復)。試設計一個旅遊景點信息管理系統,使之能提供以下功能:【我可以幫你完成】
⑹ C語言程序設計 關於旅遊景點管理程序設計
#include <stdio.h>
#include <string.h>
#include<stdlib.h>
#define M 60
#define PAGE 5
#define replace "%9ld,%-10s,%11l,%-15s,-5%d,%-11l,%s\n"
int sum=0;
struct student/*建立通迅錄*/
{
long num[9];/*學號*/
char name[8];/*姓名*/
long phonenum[11];/*聯系方式*/
char addr[20];/*家庭住址*/
int donum[5];/*宿舍號*/
long qq[10];/*QQ號碼*/
char email[20];/*電子郵箱*/
};
struct student student[M],b[M];
void clrscr()
{ getchar();
system("cls");
}
save(int sum)
{ FILE *fp;
int i;
if((fp=fopen("tong_xun_lu.txt","wb"))==NULL);
}
⑺ 求旅遊景點管理程序c語言代碼
我們倆抽到的題一樣、、、、
⑻ (C語言)一個旅遊管理系統,有八個景點,具體要求如下,跪求大神幫助寫代碼,求最簡便
定義一個結構體,包含票種類,票價。然後再用鏈表去存這些數據。後面的要求就很容易實現了。
⑼ c語言作業. 旅遊景點管理程序(大一的作業) 主要用結構體數組實現,用結構體表示每項記錄,包含數據
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
/*------------數據區--------*/
int SIZE=2;
struct Spot{
char id[10]; //景點編號
char name[20]; //景點名稱
char address[50]; //景點地址
float cost; //費用
};
struct Spot scenery[20];
char sub_id[10]; //用於儲存要查詢、修改、刪除景點的編號
/*-----------函數聲明區--------*/
void Input(Spot scenery[],int SIZE); //錄入函數
void Del(Spot scenery[],char sub_id[],int &SIZE); //刪除函數
void Alter(Spot scenery[],char sub_id[],int SIZE); //修改函數
void Output(Spot scenery[],int SIZE); //顯示函數
void Select(Spot scenery[],char sub_id[],int SIZE); //查詢函數
void Count(Spot scenery[],int SIZE); //統計函數
void Exit(); //退出函數
/*------------函數定義區-----------*/
void Input(Spot scenery[10],int SIZE)
{
int i;
printf("please input\n");
printf("------------------------------------------\n");
for(i=0;i<SIZE;i++)
{
printf("please input id:");
gets(scenery[i].id);
printf("please input name:");
gets(scenery[i].name);
printf("please input address:");
gets(scenery[i].address);
printf("please input cost:");
scanf("%f",&scenery[i].cost);
fflush(stdin); //清空鍵盤緩沖區
printf("\n");
}
printf("------------------輸入完畢----------------\n");
}
void Del(Spot scenery[],char sub_id[],int &SIZE)
{
int i,j;
printf("please input delete spot's id:");
gets(sub_id);
for(i=0;i<SIZE;i++)
{
if(strcmp(scenery[i].id,sub_id)==0)
{
for(j=i;j<SIZE;j++)
scenery[j]=scenery[j+1];
SIZE--;
}
}
printf("-------------刪除成功-------------\n");
}
void Alter(Spot scenery[],char sub_id[],int SIZE)
{
int i;
printf("please input alter spot's id:");
gets(sub_id);
for(i=0;i<SIZE;i++)
{
if(strcmp(scenery[i].id,sub_id)==0)
{
printf("alter spot's name is:");
gets(scenery[i].name);
printf("alter spot's address is:");
gets(scenery[i].address);
printf("alter spot's cost is:");
scanf("%f",&scenery[i].cost);
fflush(stdin);
break;
}
}
printf("-------------修改成功------------\n");
}
void Output(Spot scenery[],int SIZE)
{
int i;
printf("output scenery:\n");
printf("----------------------------------------\n");
for(i=0;i<SIZE;i++)
{
printf("id:%s name:%s address:%s cost:%.2f\n",scenery[i].id,scenery[i].name,scenery[i].address,scenery[i].cost);
}
printf("------------------輸出完畢---------------\n");
}
void Select(Spot scenery[],char sub_id[],int SIZE)
{
int i;
printf("please input select spot's id:");
gets(sub_id);
printf("-----------------查詢結果--------------\n");
for(i=0;i<SIZE;i++)
{
if(strcmp(scenery[i].id,sub_id)==0)
printf("id:%s name:%s address:%s cost:%.2f\n",scenery[i].id,scenery[i].name,scenery[i].address,scenery[i].cost);
}
}
void Count(Spot scenery[],int SIZE)
{
int i;
float sum; //sum用於儲存總費用
printf("-------------------統計結果------------\n");
for(i=0,sum=0;i<SIZE;i++)
sum+=scenery[i].cost;
printf("scenery number is:%d cost is:%.2f\n",SIZE,sum);
}
void Exit()
{
printf("----------------已退出--------------\n");
exit(1);
}
/*-------------主函數----------*/
void main()
{
int s;
while(1)
{
printf("please input:\n");
printf("1、錄入。\n2、刪除。\n3、修改。\n4、顯示。\n5、查詢。\n6、統計。\n7、退出。\n");
scanf("%d",&s);
fflush(stdin);
switch(s)
{
case 1:Input(scenery,SIZE);break;
case 2:Del(scenery,sub_id,SIZE);break;
case 3:Alter(scenery,sub_id,SIZE);break;
case 4:Output(scenery,SIZE);break;
case 5:Select(scenery,sub_id,SIZE);break;
case 6:Count(scenery,SIZE);break;
case 7:Exit();break;
default:printf("please input again:");break;
}
}
}