代码
include<stdio.h>
include<stdlib.h>
int main()
{
FILE*fp;
int a[20];
int i,x,n;
if((fp=fopen("E:HX.txt","r"))==NULL)
{
printf("File open error!
");
exit(0);
}
for(i=0;i<5;i++)
{
fscanf(fp,"%d%c",&a[i]);
printf("%d%c
",a[i]);
}
x=a[0];
n=0;
for(i=0;i<5;i++)
{
if(x<a[i]){
x=a[i];
n=i;
}
}
printf("%d %d",x,n);
if(fclose(fp))
{
printf("Can not close the file
");
exit(0);
}
return 0;
}
思路
错误
一开始我的文档读的出,但数据不对;
后来知道我的%说要改为%d%c才可以
而且n=i;要放到if里面