c++怎么輸入字符串?dāng)?shù)組

c++
小億
257
2024-02-19 17:18:30

在C++中,可以使用std::cin來(lái)輸入字符串?dāng)?shù)組。下面是一個(gè)簡(jiǎn)單的示例代碼,可以輸入一個(gè)字符串?dāng)?shù)組并打印出來(lái):

#include <iostream>
#include <string>

int main() {
    const int SIZE = 5;
    std::string arr[SIZE];

    // 輸入字符串?dāng)?shù)組
    for (int i = 0; i < SIZE; i++) {
        std::cout << "Enter string " << i+1 << ": ";
        std::cin >> arr[i];
    }

    // 打印字符串?dāng)?shù)組
    std::cout << "You entered the following strings:" << std::endl;
    for (int i = 0; i < SIZE; i++) {
        std::cout << arr[i] << std::endl;
    }

    return 0;
}

在這個(gè)示例中,我們首先定義了一個(gè)大小為5的字符串?dāng)?shù)組arr,然后使用std::cin輸入5個(gè)字符串,并將它們存儲(chǔ)到數(shù)組中,最后打印出輸入的字符串?dāng)?shù)組。

0