Xлежит вне отрезков [2,15]или[-108,-5] язык c++ в чём ошибка #include "stdafx.h" #include #include #include using namespace std; int _tmain(int argc, _tchar* argv[]) { int x; scanf("%d",& x); ; if((x< =2 & & 15 > =-108 & & -5)) {; cout< < "-"; } ; else cout< < "+"; ; system("pause"); return 0;
//Dev-C++ 4.9.9.2
#include <iostream>
using namespace std;
int main(){
setlocale(LC_CTYPE,"Russian");
int x=0;
cin>>x;
if(((x>=2)&&(x<=15))||((x>=-108)&&(x<=-5)))
cout<<"Нет";
else
cout<<"Да";
cin.get();
cin.get();
return 0;
}
Пример ввода:
1
Пример вывода:
Да