⑴ 题目:旅游景点信息管理系统设计 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;
}
}
}