Код программы:
#include <iostream>
using namespace std;
int main()
{
int a;
cout<<"Введите число"<<endl;
cin >> a;
if (a >= 100 & a <= 500)
cout<<"Привет"<<endl;
else
if (a <= -100 & a >= -500)
cout<<"Мир"<<endl;
return 0;
}
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Код программы:
#include <iostream>
using namespace std;
int main()
{
int a;
cout<<"Введите число"<<endl;
cin >> a;
if (a >= 100 & a <= 500)
cout<<"Привет"<<endl;
else
if (a <= -100 & a >= -500)
cout<<"Мир"<<endl;
return 0;
}