今日は初めて定数を表現するためのconst修飾子を使ってみました。このconstをつかうことで、変数の値を固定できます。いいかえれば、書き換えられないようにできます。
// This program calculates the circumference of a circle.(円周の長さの計算)#include <iostream>using namespace std;int main(){// Constants(定数を表現するための修飾子)const double PI = 3.14159;const double DIAMETER = 10.0;// Variable to hold the circumference(円周の変数定義)double circumference;// Calculate the circumference.(円周の測定)circumference = PI * DIAMETER;// Display the circumference. (円周の出力)cout << “The circumference is: ” << circumference << endl;return 0;}
出力は以下の通りです。
The circumference is: 31.4159
ご面倒おかけしますが、たまにはクリックお願いします!