Write a program that reports warm or cold according to the entered temperature.

Write the program code
#include <iostream>
using namespace std;
int main ()
{
int t;
cout << “Vvedite temperaturu \ n”;
cin >> t;
if (t> = 5)
cout << “Teplo \ n”;
if (t <5)
cout << “Holodno \ n”;
return 0;
}
Program result
When entering a number greater than 5:

Vvedite temperaturu
12
Teplo
When entering a number less than 5:

Vvedite temperaturu
-12
Holodno



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.