C++メモ Hello World #include <iostream> #include <string> // ← 無くてもコンパイルは通る・・ using namespace std; // 名前空間 int main() { string user_name; cout << "input your name :"; cin >> user_name; cout << '\n' << "Hello, " << user_name << "!!!\n"; return 0; } printみたいなこと cout : 標準出力に出す cerr : 標準エラー出力に出す endl : "\n" と同じ? 初期化 int num01 = 1; int num01(1); // ← こういう風にも書けるんだとか(コンストラクタ書式)