| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 4291 人关注过本帖
标题:实训啦,问题多多~大家多多关照!
取消只看楼主 加入收藏
走刀口→超
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:5018
专家分:0
注 册:2006-3-14
收藏
得分:0 

完工咯。。。提前了1天多1点点。。。
[CODE]
#include <stdio.h>
#include <string.h>
#define MAX 100
struct day
{
int month;
int day1;
};
struct mydata
{
char name[20];
struct day birthday;
char telnum[20];
}a[MAX];
static int g;
void creat1();
void load(struct mydata a[]);
void save(struct mydata a[]);
void input(struct mydata a[]);
void output(struct mydata a[]);
void search(struct mydata a[]);
void array(struct mydata a[]);
void delete1(struct mydata a[]);
void modify(struct mydata a[]);
int main(void)
{
while(1)
{
int i;
printf("\n\n***************List***************\n");
printf(" 1.creat a new file.\n"); //建立新文档
printf(" 2.load the file.\n"); //读取文档。如果建立过。可以直接读取。要在读取过后才适合进行下面的操作。
printf(" 3.input the data.\n"); //输入信息
printf(" 4.output the data.\n"); //输出信息
printf(" 5.search the data.\n"); //查找信息
printf(" 6.array the data.\n"); //排列,整理顺序
printf(" 7.delete the data.\n"); //删除信息
printf(" 8.modify the data.\n"); //修改选项
printf(" 9.save the data.\n"); //保存
printf(" 0.return to system.\n"); //退出
printf("***************List***************\n\n\n");
printf("Please selete(1-9):");
scanf("%d",&i);
getchar();
switch (i)
{
case 1:creat1();break;
case 2:load(a);break;
case 3:input(a);break;
case 4:output(a);break;
case 5:search(a);break;
case 6:array(a);break;
case 7:delete1(a);break;
case 8:modify(a);break;
case 9:save(a);exit(0);
case 0:exit(0);
}
}
return 0;
}

void input(struct mydata a[]) //输入data
{
char ch;
printf("Make sure you have load the data?(Y/N)");
scanf("%c",&ch);
getchar();
if((ch!=78)&&(ch!=110))
{
printf("input the data:");
do
{
printf("\n input the name:");
gets(a[g].name);
printf("\n input the birthday(mm-dd):");
scanf("%d-%d",&a[g].birthday.month,&a[g].birthday.day1);
getchar();
printf("\n input the telphone number:");
gets(a[g].telnum);
printf("\n countuie?(press n or N to quie)");
scanf(" %c",&ch);
getchar();
}while((++g<MAX)&&(ch!=78)&&(ch!=110));
}
else
load(a);
printf("Now you can input the data:");
do
{
printf("\n input the name:");
gets(a[g].name);
printf("\n input the birthday(mm-dd):");
scanf("%d-%d",&a[g].birthday.month,&a[g].birthday.day1);
getchar();
printf("\n input the telphone number:");
gets(a[g].telnum);
printf("\n countuie?(press n or N to quie)");
scanf(" %c",&ch);
getchar();
}while((++g<MAX)&&(ch!=78)&&(ch!=110));
}

void array(struct mydata a[]) //排列
{
int i,j;
struct mydata t;
for(i=0;i<g;i++) //让人名从a-z排列
{
for(j=0;j<g;j++)
{
if(strcmp(a[i].name,a[j].name)<0)
{t=a[i];a[i]=a[j];a[j]=t;}
}
}
}

void output(struct mydata a[]) //输出
{
int i;
printf("the all data listed:\n\n");
for(i=0;i<g;i++) //输出所有人物!
{
printf("No.%2d %s's birthday is %d.%d telphone number is %s.\n",i+1,
a[i].name,a[i].birthday.month,a[i].birthday.day1,a[i].telnum);
}
}

void search(struct mydata a[]) //查找
{
char keyname[20];int i,flag=1;
struct mydata t;
printf("input the search name:"); //查找人物!
gets(keyname);

for(i=0;(i<=g)&&flag;i++)
{
if(strcmp(keyname,a[i].name)!=0);
else
{
printf(" Find the data:%s's birthday is %d.%d telphone number is %s.\n\n",
a[i].name,a[i].birthday.month,a[i].birthday.day1,a[i].telnum);
flag=0;
}
}
if(flag)printf("Can't find the data!!\n");
}


void delete1(struct mydata a[]) //删除
{
char keyname[20],ch;int i,j,flag=1;
printf("\n\ninput the search name:");
gets(keyname);

for(i=0;(i<g)&&flag;i++)
{
if(strcmp(keyname,a[i].name)!=0);
else
{
printf(" Find the data:%s's birthday is %d.%d telphone number is %s.\n",
a[i].name,a[i].birthday.month,a[i].birthday.day1,a[i].telnum);
printf(" Do you want to delete the data?(Y/N)\n");
scanf("%c",&ch);
if((ch!=78)&&(ch!=110))
{
a[MAX]=a[i];
g-=1;
printf("the date is deleted!!!\n");
flag=0;
}
else return;
}
}
for(j=i-1;j<g;j++)
a[j]=a[j+1];
if(flag)printf("Can't find the data!!\n");
}

void creat1()
{
FILE *fp1;
fp1=fopen("tongxun.bin","w+");

if((fp1!=NULL))
printf("File creat success!!!\n");
else
printf("File creat failure!!!\n");
}

void load(struct mydata a[])
{
FILE *fp1;
int i;
char ch;
if((fp1=fopen("tongxun.bin","rb"))==NULL)
{
printf("The file can not open!!!\n");
exit(0);
}

for (i=0;i<MAX;i++)
if(fread(&a[i],sizeof(struct mydata),1,fp1)!=1)
{if(feof(fp1))break;
printf("file load error!\n");
return;
}
printf("The file is loaded!!!\n");
g=i;
fclose(fp1);
}

void save(struct mydata a[])
{
int i;
FILE *fp1;
array(a);

if((fp1=fopen("tongxun.bin","wb"))==NULL)
{
printf("The file can not open!!!\n");
return;
}

for(i=0;i<g;i++)
if(fwrite(&a[i],sizeof(struct mydata),1,fp1)!=1)
{printf("file save error!\n");
return;
}
printf("file save success!!!\n");
fclose(fp1);
printf("The file is closed!!!\n");
}

void modify(struct mydata a[])
{
char keyname[20];int i,flag=1;
struct mydata t;
printf("input the search name:"); //查找人物!
gets(keyname);

for(i=0;(i<=g)&&flag;i++)
{
if(strcmp(keyname,a[i].name)!=0);
else
{
printf(" Find the data is:%s's birthday is %d.%d telphone number is %s.\n",
a[i].name,a[i].birthday.month,a[i].birthday.day1,a[i].telnum);
printf("Please input the modify data:\n\n");
printf(" input the new name:");
gets(a[i].name);
printf("\n input the new birthday(mm-dd):");
scanf("%d-%d",&a[i].birthday.month,&a[i].birthday.day1);
getchar();
printf("\n input the new telphone number:");
gets(a[i].telnum);
flag=0;
}
}
if(flag)printf("Can't find the data!!\n");
}
[/CODE]


在C-FREE上运行得好好的。却在TC中编译都无法通过。实在郁闷。因此么有清屏了。还好刷得比较快。。。


人在江湖【走】,怎能不挨【刀】;为了能活【口】,唯有把己【超】!come on...
2006-06-29 14:48
走刀口→超
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:5018
专家分:0
注 册:2006-3-14
收藏
得分:0 
总结:

在这1个礼拜的实训中,

第1天几乎没能做出什么成果。那个急哟。
不停的颠覆着不完整的想法,扔掉了在宿舍自己写下有错误的程序。
就像穆扬说的。头脑比较空白,连个scanf也用错了。
其原因就是准备不够充足。拿起来就写。没头没尾……以后改正。

第2天得到星星的指点后。开始动工。一步一步的迈向成功。基本完成了内存中的处理。

第3天(原本以为可以完工的日子)在这个关键的一天中。大早就出现不少问题。
以至于白白浪费一个早上的时间。原因是没有理解星星的意思。我把没次的输入输出都读写文件。
工程之大。不错才怪。到了下午才意识到真正的做法。
下午还经过穆扬的一起研究,破除了一些困难。
基本实现整合,虽然还有点细节问题没能搞定。

第4天(工程拖后1天)大早又出现了错误。昨天晚上做了些小手脚,还好好的。大早又不对了。几乎崩溃。
在1次又1次的测试中,KO了错误。在中午前搞定了。
下午,也就是现在。搞了点输出的样式。清屏无法实现,不知道这是否是我写的程序可移植性差。还很有待提高咧~
就此结束。

这次实训对我来说是结束了。


在您写程序写的烦躁的时候,请停下您的手,拿出书来瞅瞅,看看与你程序相关的东西。你会有新的发现的。
这叫豁然开朗。对我这次有这种感觉。有可能是我的准备不够充分。这的确是很大的缺点。

在这里谢谢星星版主还有穆扬兄一起的支持。。。(以后也会有可能打击穆扬兄哟!)

[此贴子已经被作者于2006-6-29 15:02:21编辑过]


人在江湖【走】,怎能不挨【刀】;为了能活【口】,唯有把己【超】!come on...
2006-06-29 15:01
快速回复:实训啦,问题多多~大家多多关照!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024340 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved