这是我的代码。#include<stdio.h>void main(){ FILE *fp; int a,b; fp=fopen("hello.txt","r"); while(!feof(fp)){ fscanf(fp,"%d %d",&a,&b); ...
確定! 回上一頁