Untitled
unknown
c_cpp
2 years ago
549 B
9
Indexable
// ConsoleApplication1.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <string>
#include <iostream>
#include <stdlib.h>
#include <cmath>
using namespace std;
void test()
{
int x, y, bo=0;
cin >> x >> y;
if (x > 0 and y > 0) { bo = 1; }
if (x < 0 and y < 0) { bo = 3; }
if (x < 0 and y>0) { bo = 2; }
if (x > 0 and y < 0) { bo = 4; }
cout << bo;
}
int main()
{
test();
}Editor is loading...