c语言编程题(file*fp知识) 10
已知用户成绩文件d:\score.txt,内有10个数据并且根据成绩从高到低有序。请编写一程序,输入一个用户名和成绩,如果比文件中的成绩高,请写入文件,并保证文件中仍有1...
已知用户成绩文件d:\score.txt,内有10个数据并且根据成绩从高到低有序。请编写一程序,输入一个用户名和成绩,如果比文件中的成绩高,请写入文件,并保证文件中仍有10个数据且成绩有序。若比文件中的所有成绩都低,文件不变。
详细问题http://wenku.baidu.com/link?url=vbeEibcorZUcK3UCMyPPDa8EWdPTwSg6zTxPZW-5708as1-SnZ0Qp39MnhiDx6XLIPiFnCCWHUVqhgwTQUi7P0IpcBEfbTzehlJPDT10E5_ 展开
详细问题http://wenku.baidu.com/link?url=vbeEibcorZUcK3UCMyPPDa8EWdPTwSg6zTxPZW-5708as1-SnZ0Qp39MnhiDx6XLIPiFnCCWHUVqhgwTQUi7P0IpcBEfbTzehlJPDT10E5_ 展开
若以下回答无法解决问题,邀请你更新回答
展开全部
不知道你要什么?
例子:
/**************************************************/
/* 文件的字符形式读取与存储和字符串形式的读取与存储 */
/**************************************************/
/*读一个字符*/
#include "stdio.h"
#include "string.h"
main(){
FILE *fp;
char c;
if((fp=fopen("s.c","r"))==NULL){
printf("\nFile can not open!");
getch();
exit(0);
}
while(!feof(fp)){
c=fgetc(fp);
putchar(c);
}
fclose(fp);
getch();
}
/*写一个字符*/
#include "stdio.h"
#include "string.h"
main(){
FILE *fp;
char c;
if((fp=fopen("d:\\data.txt","w"))==NULL){
printf("\nFile can not open!");
getch();
exit(0);
}
while((c=getchar())!='#'){
fputc(c,fp);
}
fclose(fp);
}
/*读写字符串*/
#include "stdio.h"
#include "string.h"
main(){
FILE *fp;
char c[80]={""},s[80]={""};
/*写字符串*/
if((fp=fopen("d:\\data.txt","w"))==NULL){
printf("\nFile can not open!");
exit(0);
}
gets(c);
fputs(c,fp);
fclose(fp);
/*读字符串*/
if((fp=fopen("d:\\data.txt","r"))==NULL){
printf("\nFile can not open!");
exit(0);
}
while(!feof(fp)){
fgets(s,80,fp);
puts(s);
}
fclose(fp);
getch();
}
例子:
/**************************************************/
/* 文件的字符形式读取与存储和字符串形式的读取与存储 */
/**************************************************/
/*读一个字符*/
#include "stdio.h"
#include "string.h"
main(){
FILE *fp;
char c;
if((fp=fopen("s.c","r"))==NULL){
printf("\nFile can not open!");
getch();
exit(0);
}
while(!feof(fp)){
c=fgetc(fp);
putchar(c);
}
fclose(fp);
getch();
}
/*写一个字符*/
#include "stdio.h"
#include "string.h"
main(){
FILE *fp;
char c;
if((fp=fopen("d:\\data.txt","w"))==NULL){
printf("\nFile can not open!");
getch();
exit(0);
}
while((c=getchar())!='#'){
fputc(c,fp);
}
fclose(fp);
}
/*读写字符串*/
#include "stdio.h"
#include "string.h"
main(){
FILE *fp;
char c[80]={""},s[80]={""};
/*写字符串*/
if((fp=fopen("d:\\data.txt","w"))==NULL){
printf("\nFile can not open!");
exit(0);
}
gets(c);
fputs(c,fp);
fclose(fp);
/*读字符串*/
if((fp=fopen("d:\\data.txt","r"))==NULL){
printf("\nFile can not open!");
exit(0);
}
while(!feof(fp)){
fgets(s,80,fp);
puts(s);
}
fclose(fp);
getch();
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询