我有一個包含這樣陣列的文件:從文件C++讀陣列中的指定範圍
5
23
232
44
53
43
所以行包含元素的個數。這意味着數量的元素需要閱讀。並創建一個數組。
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(){
fstream mystream("file.txt");
int ArraySize;
int* array;
ArraySize = ......... //read first line
for(int i = 2; i < ArraySize; i++){
...............//add elements to the array
}
。在你的**問題沒有單一的問號**。你想從我們這裏得到什麼?猜測?指定有什麼問題。這不是一個代碼提供的網站 – Fureeish
你真的想要提供代碼//讀取第一行嗎? – pm100