c文件读写
#include<stdio.h>#include<stdlib.h>#include<string.h>voidmain(){FILE*fp;charstr[100];...
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void main()
{
FILE *fp;
char str[100];
int i=0;
if((fp=fopen("a1","w"))==NULL)
{printf("can not open file\n");
exit(0);
}
printf("dazi\n");
gets(str) ;
while(str[i]!='!')
{if(str[i]>='a'&&str[i]<='z')
str[i]=str[i]-32;
fputc(str[i],fp);
i++;
}
fclose(fp);
fp=fopen("a1","r");
fgets(str,strlen(str)+1,fp);
printf("%s\n",str);
fclose(fp);
getch();
}
这个是什么意思..解释一一下..刚学c文件那一章..书看不懂啊.. 展开
#include<stdlib.h>
#include<string.h>
void main()
{
FILE *fp;
char str[100];
int i=0;
if((fp=fopen("a1","w"))==NULL)
{printf("can not open file\n");
exit(0);
}
printf("dazi\n");
gets(str) ;
while(str[i]!='!')
{if(str[i]>='a'&&str[i]<='z')
str[i]=str[i]-32;
fputc(str[i],fp);
i++;
}
fclose(fp);
fp=fopen("a1","r");
fgets(str,strlen(str)+1,fp);
printf("%s\n",str);
fclose(fp);
getch();
}
这个是什么意思..解释一一下..刚学c文件那一章..书看不懂啊.. 展开
展开全部
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void main()
{
FILE *fp;//文件指针
char str[100];//字符串用来临时存储从文件读取的字符串
int i=0;
if((fp=fopen("a1","w"))==NULL)//打开文件
{printf("can not open file\n");
exit(0);
}
printf("dazi\n");
gets(str) ;//输入字符串
while(str[i]!='!')//将读取的字符串中的小写字符转换为大写,直到!结束并且间字符存入文件中
{if(str[i]>='a'&&str[i]<='z')
str[i]=str[i]-32;
fputc(str[i],fp);
i++;
}
fclose(fp);
fp=fopen("a1","r");
fgets(str,strlen(str)+1,fp);//从文件中取字符串存入str字符串中
printf("%s\n",str);//打印输出
fclose(fp);
getch();
}
#include<stdlib.h>
#include<string.h>
void main()
{
FILE *fp;//文件指针
char str[100];//字符串用来临时存储从文件读取的字符串
int i=0;
if((fp=fopen("a1","w"))==NULL)//打开文件
{printf("can not open file\n");
exit(0);
}
printf("dazi\n");
gets(str) ;//输入字符串
while(str[i]!='!')//将读取的字符串中的小写字符转换为大写,直到!结束并且间字符存入文件中
{if(str[i]>='a'&&str[i]<='z')
str[i]=str[i]-32;
fputc(str[i],fp);
i++;
}
fclose(fp);
fp=fopen("a1","r");
fgets(str,strlen(str)+1,fp);//从文件中取字符串存入str字符串中
printf("%s\n",str);//打印输出
fclose(fp);
getch();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询