Actions
Revision #151
closed定数 [基礎I 1/2, slide 17] の変更
Start date:
07/07/2022
Due date:
07/13/2022
% Done:
100%
Estimated time:
0.50 h
Description
サンプルコード(NGパターン)の5行目, 6行目(↓)
5 const int THRESHOLD = 80; // 定数として閾値80を設定
6 THRESHOLD = 60; // 定数には値を上書きできないのでコンパイルエラーになる
を次のように変更してください。
5 const int threshold = 80; // 定数として閾値80を設定
6 threshold = 60; // 定数には値を上書きできないのでコンパイルエラーになる
Actions