โ Back to If Statements
Question 239
Quadrant Finder
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
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.