| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 333 人关注过本帖
标题:[求助] 程序不能运行
取消只看楼主 加入收藏
cutboy
Rank: 1
等 级:新手上路
帖 子:120
专家分:0
注 册:2007-9-16
收藏
 问题点数:0 回复次数:0 
[求助] 程序不能运行
有两个磁盘文件A和B,各存放一行字母,要求把这两个文件中的信息合并(按字母顺序排列),
输出到一个新文件C中

#include<stdio.h>
main()
{
char c,d,e,str[100],st[45];
int i,j;
FILE *fp,*dp;
if((fp=fopen("e:\\s","w"))==NULL);
{
printf("can't open this file\n");
exit(0);
}
if((dp=fopen("e:\\ss","w"))==NULL);
{
printf("can't open this file\n");
exit(0);
}
while((c=getchar())!='*')
{
fputc(c,fp);
c=getchar();
}
fclose(fp);
printf("\n\n");
while((d=getch())!='#')
{
fputc(d,dp);
d=getchar();
}
fclose(dp);
fp=fopen("e:\\s","r");
fgets(str,strlen(str)+1,fp);
printf("%s\n",str);
fclose(fp);
dp=fopen("e:\\ss","r");
fgets(st,strlen(st)+1,dp);
strcat(str,st);
fclose(dp);
for(i=0;i<strlen(str);i++)
{
for(j=1;j<strlen(str);j++)
{
if(str[i]>str[j])
e=str[j];
str[j]=str[i];
str[i]=e;
j++;
}
i++;
}
fp=fopen("e:\\s","w");
do
{
i=0;
fputc(str[i],fp);
i++;
}while(str[i]!='\0');
fclose(fp);
system("pause");
}
我用的是TC,就输出can't open this file,哪个帮我看看是怎么回事??
搜索更多相关主题的帖子: 运行 
2007-10-08 18:23
快速回复:[求助] 程序不能运行
数据加载中...
 
   



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

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