Our life today is three years ago, our life three years later is today's choice.
我们今天的生活是三年前抉择的,我们三年以后的生活就是今天抉择的。
题目描述:向文件in.txt中写入字符串HelloWorld。
此题主要考察了对文件的基本掌握,以及是否能正确读写文件。此部分内容对C语言的提升很有帮助,学好后可以做很多事情哦,不过不能做违法的事情哦。
源代码:
代码语言:javascript复制#include<stdio.h>
#include<string.h>
#include <stdlib.h>
extern void solve();
int main(void)//主函数题目已写好
{
solve();
FILE *f = fopen("in.txt","r");
char s[100];
fscanf(f,"%s",&s);
if(strcmp(s,"HelloWorld")==0)
printf("YES");
else
printf("NO");
return 0;
}
void solve(){//(以下是题目要求补充的)
FILE *fp;
fp=fopen("in.txt","w");
fprintf(fp,"%s","HelloWorld");
fclose(fp);
}
运行结果: