Project

General

Profile

Actions

Revision #151

closed

定数 [基礎I 1/2, slide 17] の変更

Added by Kazuyoshi Kouno over 2 years ago. Updated over 2 years ago.

Status:
Closed
Priority:
Normal
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

Also available in: Atom PDF