C++で複数の整数型変数を表示するコードを書いてみた!

 code-2620118_640
 

C++の授業の宿題の一環として、複数の整数型変数を表示するコードを講義を参考に書いてみました。
 

// This program has variables of several of the integer types.(複数の整数型変数の表示)
#include <iostream>
using namespace std;

int main()
{
int checking;
unsigned int miles;
long diameter;

checking = 20;
miles = 3;
diameter = 100000;
cout << “We have made a long journey of ” << miles;
cout << ” miles.\n”;
cout << “Our checking account balance is ” << checking;
cout << “\nThe galaxy is about ” << diameter;
cout << ” light years in diameter.\n”;
return 0;
}

出力は以下の通りです。これだけのコートがこんなにシンプルに表示されるのは感動ですね。

We have made a long journey of 3 miles.
Our checking account balance is 20
The galaxy is about 100000 light years in diameter.



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

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

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