AdSense

網頁

2022/7/12

C++ 宣告字串變數

C++宣告字串變數的方法如下。


C++要使用字串變數要在上方以#include <string>匯入string標頭檔,如此便能使用string類別的變數。

main.cpp

#include <iostream>
#include <string>
using namespace std;

int main() {
    string s = "hello world"; // 宣告一個字串變數s,值為"hello world"

    cout << s << endl; // 把字串s輸出到輸出串流cout

    return 0;
}

編譯執行印出以下:

hello world



沒有留言:

AdSense