| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 372 人关注过本帖
标题:求助 帮我看看了
只看楼主 加入收藏
zmlnow
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2006-12-26
收藏
 问题点数:0 回复次数:1 
求助 帮我看看了

(1)

#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<process.h>
void main()
{
char a;
char b[]="";
int i=0;
int k=0;
a=getche();
cin>>b;
FILE *file;
file=fopen("d:\\zml.txt","w");
if(file==NULL) exit(1);
cout<<"请做好准备,开始录入文件:"<<endl;
while(1)
{
for(k=0;b[k]!='/0';k++)
{
a=getche();
if (int(a)==13)
{
cout<<endl;
fprintf(file,"%c",char(10));
}
if (int(a)==13) continue;
if(int(a)==8)
{
cout<<endl;
exit(0);
}
fprintf(file,"%d",int(a)+int(b));
}

}

}




(2)

#include<iostream.h>
#include<stdio.h>
#include<process.h>
void main()
{
int a;
char b[]="";
int k=0;
cin>>b;
FILE *file;
file=fopen("d:\\zml.txt","r");
if(file==NULL) exit(1);
cout<<"请做好准备,开始输出文件:"<<endl;
while(1)
{
for(k=0;b[k]!='/0';k++)
{
if(feof(file)) exit(0);
fscanf(file,"%d",a);
cout<<char(a-int(b[k]))<<flush;

}

}

}


各高手帮 I 看看了,为啥第一个可以用,而第二个不可以用呢???

搜索更多相关主题的帖子: include file 
2007-01-16 09:47
cz522321
Rank: 1
等 级:禁止访问
威 望:2
帖 子:569
专家分:5
注 册:2006-3-13
收藏
得分:0 

(1)

#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<process.h>
void main()
{
char a;
char b[]="";
int i=0;
int k=0;
a=getche();
cin>>b;
FILE *file;
file=fopen("d:\\zml.txt","w");
if(file==NULL) exit(1);
cout<<"请做好准备,开始录入文件:"<<endl;
while(1)
{
for(k=0;b[k]!='/0';k++)
{
a=getche();
if (int(a)==13)
{
cout<<endl;
fprintf(file,"%c",char(10));
}
if (int(a)==13) continue;
if(int(a)==8)
{
cout<<endl;
exit(0);
}
fprintf(file,"%d",int(a)+int(b));
}

}

}


(2)

#include<iostream.h>
#include<stdio.h>
#include<process.h>
void main()
{
int a;
char b[]="";
int k=0;
cin>>b;
FILE *file;
file=fopen("d:\\zml.txt","r");
if(file==NULL) exit(1);
cout<<"请做好准备,开始输出文件:"<<endl;
while(1)
{
for(k=0;b[k]!='/0';k++)
{
if(feof(file)) exit(0);
fscanf(file,"%d",a);
cout<<char(a-int(b[k]))<<flush;

}

}

}
红色的地方要改为:file=fopen("d:\\zml.txt","w");


2007-01-16 12:30
快速回复:求助 帮我看看了
数据加载中...
 
   



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

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