今日は少し簡単なコードを書いてみました。コードの見やすさを意識して書いてみたのでご覧ください。
//売上高と平均価格の計算#include <iostream>using namespace std;int main(){double shares = 220.0;double avgPrice = 14.67;cout << “There were ” << shares << ” shares sold at $”;cout << avgPrice << ” per share.\n”;return 0;}
出力は以下の通りです。
There were 220 shares sold at $14.67 per share.
ご面倒おかけしますが、たまにはクリックお願いします!