Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Oppiskele Constant | Variables
Introduction to C++

Constant

Pyyhkäise näyttääksesi valikon

In the previous chapters, we printed some expressions. However, what to do if we need to store these expressions for future usage? In C++ (like in other programming languages) there are containers to keep data - variables. For each type of data (numbers, strings, characters) there is a type of variable.

Let’s take a look at the most often used types:

 const double x = 42;

The variable x will always be 42 and nobody can change it. The following code would cause an error:

 const int x = 10;
 x = 15;

You should declare variables as constants if you are sure that they will probably never change:

 const int monthPerYear = 12;
const char firstAlphabetLetter = 'A';
question-icon

Define the variable secondsPerMinute as const varible:

;

Klikkaa tai vedä ja pudota esineitä ja täytä tyhjät kohdat

Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 2. Luku 8

Kysy tekoälyä

expand

Kysy tekoälyä

ChatGPT

Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme

Constant

In the previous chapters, we printed some expressions. However, what to do if we need to store these expressions for future usage? In C++ (like in other programming languages) there are containers to keep data - variables. For each type of data (numbers, strings, characters) there is a type of variable.

Let’s take a look at the most often used types:

 const double x = 42;

The variable x will always be 42 and nobody can change it. The following code would cause an error:

 const int x = 10;
 x = 15;

You should declare variables as constants if you are sure that they will probably never change:

 const int monthPerYear = 12;
const char firstAlphabetLetter = 'A';
Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 2. Luku 8
some-alt