Informatică, întrebare adresată de anonim3298, 8 ani în urmă

Помогите пожайлуста. Установите тип переменных r, s, t, x, y и z из следующего описания:​

Anexe:

Răspunsuri la întrebare

Răspuns de base64
0

You didn't specify the programming language, I'm assumming it's C++ .

#include <iostream>

using namespace std;

int main() {

   int r,y; // 'int' is used to declare an integer (whole number)

   double s,z; // 'double' or 'float' are used to declare real numbers

   bool t,x; // 'bool' is used to declare a boolean value (true/false)

   return 0;

}

Anexe:
Alte întrebări interesante