中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++讀取文件內容怎么放入數組

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

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

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

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

完整的代碼示例:

#include <iostream>
#include <fstream>

const int MAX_SIZE = 100; // 數組的最大大小

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 << "數組已滿,無法繼續讀取" << std::endl;
            break;
        }
    }

    file.close();

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

    return 0;
}

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

0
泗水县| 谢通门县| 绥化市| 库车县| 临西县| 江津市| 龙门县| 南宫市| 罗平县| 鄂托克前旗| 英超| 乐陵市| 平凉市| 桐乡市| 镇远县| 中宁县| 汽车| 密山市| 肥西县| 连城县| 慈利县| 壤塘县| 泸定县| 万盛区| 改则县| 英德市| 沂水县| 绥棱县| 清水县| 高要市| 霍邱县| 华亭县| 金堂县| 承德市| 阳春市| 通化县| 峨眉山市| 高安市| 新营市| 华安县| 新邵县|