#include "stdafx.h"
#include"stdlib.h"
#include"stdio.h"
int main()
{
FILE *ps;
int num,scores;
char stname[100];
ps=fopen("C:\Users\Sakura\Desktop\first01.txt","r");
if(ps==0)
{
return 0;
}
fscanf(ps,"%d%s%d",&num,&stname,&scores);
printf("%d %s %d\n",num,stname,scores);
system("pause");
return 0;
}
![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/616904640566192.png "#left"
- ```
```