溫馨提示×

c++讀取文件內容怎么放入數(shù)組

c++
小億
424
2024-01-13 19:08:13
欄目: 編程語言

您可以使用以下步驟將文件內容讀取到數(shù)組中:

  1. 打開文件:
#include <fstream>

std::ifstream file("filename.txt");
  1. 檢查文件是否成功打開:
if (!file.is_open()) {
    // 文件打開失敗
    return;
}
  1. 定義一個數(shù)組來存儲文件內容:
const int MAX_SIZE = 100; // 數(shù)組的最大大小
int arr[MAX_SIZE];
int count = 0; // 記錄數(shù)組中元素的個數(shù)
  1. 使用循環(huán)讀取文件內容,并將其存入數(shù)組中:
int num;
while (file >> num) {
    arr[count] = num;
    count++;
    if (count >= MAX_SIZE) {
        // 數(shù)組已滿,無法繼續(xù)讀取
        break;
    }
}
  1. 關閉文件:
file.close();

完整的代碼示例:

#include <iostream>
#include <fstream>

const int MAX_SIZE = 100; // 數(shù)組的最大大小

int main() {
    std::ifstream file("filename.txt");
    if (!file.is_open()) {
        std::cout << "文件打開失敗" << std::endl;
        return 0;
    }

    int arr[MAX_SIZE];
    int count = 0;

    int num;
    while (file >> num) {
        arr[count] = num;
        count++;
        if (count >= MAX_SIZE) {
            std::cout << "數(shù)組已滿,無法繼續(xù)讀取" << std::endl;
            break;
        }
    }

    file.close();

    // 打印數(shù)組中的內容
    for (int i = 0; i < count; i++) {
        std::cout << arr[i] << " ";
    }
    std::cout << std::endl;

    return 0;
}

請確保將"filename.txt"替換為實際文件名,并在同一目錄下創(chuàng)建該文件。

0