代码
include<stdio.h>
include<stdlib.h>
int main (void)
{
FILE *fp;
int i,index,n;
int a[10];
scanf("%d",&n);
if((fp=fopen("E:XUZIYIxuziyi.txt","r"))==NULL)
{
printf("File open error!
");
exit(0);
}
for(i=0;i<n;i++)
{
fscanf(fp,"%d",&a[i]);
scanf("%d",&a[i]);
index=0;
for(i=1;i<n;i++)
if(a[i]>a[index])
index=i;
printf("%d %d",a[index],index);
printf("%d%c",a[i]);
}
if(fclose(fp)){
printf("Can not close the file!
");
exit(0);
}
return 0;
}
思路
首先定义指针,然后输入文件目录地址,读取文件,然后for循环找出最大值和最小值
错误
一开始就出错了
忘记定义指针了,这是主要错误