C & C++ FAQ
|
C++ | string型の入出力を行うプログラムがコンパイルエラーとなるのはどうしてですか。 |
コンパイルエラーとなる理由は単純です。<string>ヘッダをインクルードしていない、というだけです。#include <iostream> using namespace std; int main(void) { string s1; cout << "文字列を入力せよ:"; cin >> s1; cout << "あなたは" << s1 << "と入力しましたね。\n"; }
Inserters and extractors |