Untitled
Anonymous
c_cpp
11/12/2023 10:11 AM
684 B
12
Indexable
#include <iostream>
using namespace std;
int main()
{
int skolkoletkareshy;
cin >> skolkoletkareshy;
if (skolkoletkareshy > 40)
cout << "tak ne bivaet";
else
if (skolkoletkareshy > 30)
cout << "starii";
else
if (skolkoletkareshy > 20)
cout << "bivalyi";
else
if (skolkoletkareshy > 10)
cout << "molodoy";
else
cout << "on prosto kakoito perec";
}Editor is loading...