C++ 定数 1001C言語/C++言語 2023年11月05日 0 1.文法定数はconstを利用するみたいです2.サンプル#include <iostream>using namespace std ; const int MAX_NUMBER = 10 ; int main(){ cout << MAX_NUMBER << endl ; return 0 ;}3.実行結果10が出力されます PR