#include <iostream>
using namespace std;
int main(){
int n;
cin >> n;
if(n>0) {
cout << "Это положительное число" << endl;
} else {
if(n<0) {
cout << "Это отрицательное число " << endl;
if(n==0) {
cout << "Введено число 0" << endl;
}
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main(){
int n;
cin >> n;
if(n>0) {
cout << "Это положительное число" << endl;
} else {
if(n<0) {
cout << "Это отрицательное число " << endl;
} else {
if(n==0) {
cout << "Введено число 0" << endl;
}
}
}
return 0;
}