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 ))((x больш...
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 ))((x>=-108 &&-5))
{;cout<<"-";}
;else cout<<"+";
;system("pause");
return 0;
Ответ(ы) на вопрос:
Гость
//У нас убивают за такой кодстайл, легче переписать.
//Dev-C++ 4.9.9.2
#include
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
Пример вывода:
Да
Не нашли ответ?
Похожие вопросы