CJCoding With Joseph

Quadrant Finder

Read two integers, x and y, representing a point. Print which quadrant the point is in:
- 'Quadrant 1' if x > 0 and y > 0
- 'Quadrant 2' if x < 0 and y > 0
- 'Quadrant 3' if x < 0 and y < 0
- 'Quadrant 4' if x > 0 and y < 0
- 'On an axis' if x or y is 0

Expected Output:

Quadrant 1
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 4\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.