标签:scanf .com uil img key 文件 忘记 return txt
实验代码
#include<stdio.h>
#include<stdlib.h>
int main ()
{
FILE *fp;
char temp;
int num[20];
int i, b, t,d, w = 0;
fp=fopen("d:\\Users\\tianzheng.txt","a+");
fscanf(fp,"%d%c", &d,&temp);
for(i = 0;i < d;i++)
{
fscanf(fp,"%d%c", &num[i],&temp);
}
t = num[0];
for(i = 0;i < d; i++)
{
if(t < num[i])
{
t = num[i];
w = i;
}
}
fprintf(fp,"\n%d %d", t, w);
fclose(fp);
return 0;
}
屏幕截图:
在新建文件时忘记了路径。然后在查找时出错了,一些符号也会出错,试了很多次总是编译出错,最后干脆重新再打,很烦人。
最终结果截图
标签:scanf .com uil img key 文件 忘记 return txt
原文地址:https://www.cnblogs.com/2001guqiu/p/10500288.html