開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Dev C++
問題(Question):
假設我現在有「a1.txt、a2.txt、a3.txt、...a100.txt」
我要將這些文件檔依序讀取並做出一些處理
不知道是否有辦法?
程式碼(Code):(請善用置底文網頁, 記得排版)
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a;
FILE *file;
for(a=1;a<=100;a++){
file = fopen("a%d.txt", a, "w");
//做處理
fclose(file);
}
return 0;
system("PAUSE");
}
補充說明(Supplement):
我知道以上程式碼根本不能編譯
想問是否有辦法實現依序讀取的需求?