BOJ|14681号
Pythonプール x = int(input())
y = int(input())
if x > 0:
if y > 0:
print("1")
elif y < 0:
print("4")
elif x < 0:
if y > 0:
print("2")
elif y < 0:
print("3")
x>0, y>0
:1象限x<0, y>0
:2象限x<0, y<0
:3象限x>0, y<0
:4象限
C++プール #include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
if (x > 0 && y > 0) cout << 1;
else if (x < 0 && y>0)cout << 2;
else if (x < 0 && y < 0)cout << 3;
else cout << 4;
}
Reference
この問題について(BOJ|14681号), 我々は、より多くの情報をここで見つけました
https://velog.io/@hrpp1300/BOJ-14681번
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
x = int(input())
y = int(input())
if x > 0:
if y > 0:
print("1")
elif y < 0:
print("4")
elif x < 0:
if y > 0:
print("2")
elif y < 0:
print("3")
#include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
if (x > 0 && y > 0) cout << 1;
else if (x < 0 && y>0)cout << 2;
else if (x < 0 && y < 0)cout << 3;
else cout << 4;
}
Reference
この問題について(BOJ|14681号), 我々は、より多くの情報をここで見つけました https://velog.io/@hrpp1300/BOJ-14681번テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol