C++で3つの変数を使ったコードを書いてみた!

code-2620118_640
 

 うまくいくかどうか心配でしたが、無事表示されたようでした。ちなみに、cout<<は三行にわたっていますが、改行タブ\nが入力されてない限り、文字は改行されることはありません。

// This program shows three variables defined on the same line.
#include <iostream>
using namespace std;

int main()
{
int floors, rooms, suites;

floors = 15;
rooms = 300;
suites = 30;
cout << “The Imperial Hotel has ” << floors << ” floors\n”;
cout << “with ” << rooms << ” rooms and ” << suites;
cout << ” suites.\n”;
return 0;
}

コマンドプロセッサーには以下のように出力されます。

The Imperial Hotel has 15 floors

with 300 rooms and 30 suites.



ご面倒おかけしますが、たまにはクリックお願いします!

にほんブログ村 海外生活ブログ 海外移住へ
にほんブログ村

にほんブログ村 海外生活ブログへ
にほんブログ村