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 20The galaxy is about 100000 light years in diameter.
ご面倒おかけしますが、たまにはクリックお願いします!