基礎知識

C++のコーディングの基本
//aisatsu.cpp
#include
#include
using namespace std;

int main()
{
string name;
cout << "こんにちは、どなたですか?" << endl;  cin >> name;
cout << name << "さん、よろしくお願いします。" << endl; } cout 画面 cin キーボード endl 行終端⁺改行 以上はiostreamに入っているが、実際はstd::cout、std::cin、std::endlなので、 省略表記の為にusing namespace文でstdを登録している。

カテゴリー: C++ タグ: , パーマリンク