Write a program that prompts the user to input the x-y coordinate of a point in a Cartesian plane. The program should then output a message indicating whether the point is the origin, is located on the x ( or y ) axis, or appears in a particular quadrant.
using only iostream and functions
Sample x-y axis quadrant diagram:

Screenshot of Code:


Sample Outputs:
Output 1:

Output 2:

Output 3:

Output 4:

Source Code:

Source Code:
#include <iostream>
using namespace std;
void message(int x_cord, int y_cord){
if(x_cord==0 && y_cord==0){
cout << "Point is located on the origin";
}
else if(x_cord == 0){
cout << "Point is located on the y-axis";
}
else if(y_cord == 0){
cout << "Point is located on the x-axis";
}
else if(x_cord > 0 && y_cord > 0){
cout << "Point is located in Quadrant-1";
}
else if(x_cord > 0 && y_cord < 0){
cout << "Point is located in Quadrant-4";
}
else if(x_cord < 0 && y_cord > 0){
cout << "Point is located in Quadrant-2";
}
else if(x_cord < 0 && y_cord < 0){
cout << "Point is located in Quadrant-3";
}
}
int main()
{
int x_cord;
int y_cord;
cout<<"Enter x-coordinate\n";
cin >> x_cord;
cout<<"Enter y-coordinate\n";
cin >> y_cord;
message(x_cord, y_cord);
return 0;
}
Write a program that prompts the user to input the x-y coordinate of a point in...
Design a Java application that prompts the user to input the x- and y-coordinates of a point in a Cartesian plane. The program then should output a message indicating whether the point is the origin, or is located on the x (or y) axis, or appears in a particular quadrant. For example: (0, 0) is the origin (4, 0) is on the x-axis (0, -3) is on the y-axis (-2, 3) is in the second quadrant The numbering of the...
Using C# Exercise #3: Design and implement a program (name it CheckPoint) that prompts the user to enter the x-coordinate then y-coordinate of a point (in a Cartesian plane) as integer values. The program prints out the entered values followed by the location of the point on the plane. The possibilities for a point are: the origin point, on the x-axis, on the y-axis, in the first quadrant, in the second quadrant, in the third quadrant, or in the fourth...
PLEASE DO IN PSEUDOCODE; Design and implement a program (name it CheckPoint) that prompts the user to enter the x-coordinate then y-coordinate of a point (in a Cartesian plane) as integer values. The program prints out the entered values followed by the location of the point on the plane. The possibilities for a point are: the origin point, on the x-axis, on the y-axis, in the first quadrant, in the second quadrant, in the third quadrant, or in the fourth...
Write a C++ Program Write a program that prompts the user to input a number. The program should then output the number and a message saying whether the number is positive, negative, or zero. You must insert the following comments at the beginning of your program and write our commands in the middle: Write a C++ Program: 1 Name: Your Name ID: Your ID #include <iostream> using namespace std; din main YOUR CODE HERE
Write a program that takes the x, y coordinates of a
point in the Cartesian plane and prints a message telling either
which axis the point lies on or the quadrant in which it is
found.
Sample Output
(-1.0, -2.5) is in quadrant 3
(0.0, -4.8) is on the y-axis
IN C CODE PLEASE! (NOT C++)
Write code that prompts the user to input a number. The program should then output the number and a message saying whether the number i "Positive, "Negative" or "Zero". It should further output whether the number is odd or even (zero is counted as even) For example:
Write a program that prompts the user to input three numbers. The program should then output the numbers in non-descending order
Write a program that prompts the user to input daily rainfalls and display the total and average rainfall. Use a sentinel controlled loop with sentinel value of -1. Your output values should only have three digits after the decimal point. Test your program with following input data. 0.31 0.0 0.52 0.79 1.15 1.23 0.93 0.0 0.0 -1 The output of the program should be: The total rainfall is : 4.930 The average rainfall is : 0.547 Copy and paste your...
Write a program that prompts the user to input a string. The program then uses the function substr to remove all the vowels from the string. For example, if str=”There”, then after removing all the vowels, str=”Thr”. After removing all the vowels, output the string. Your program must contain a function to remove all the vowels and a function to determine whether a character is a vowel. #include <iostream> #include <string> using namespace std; void removeVowels(string& str); bool isVowel(char ch);...
Write a program that prompts the user for their quarterly water bill for the last four quarters. The program should find and output their average monthly water bill. If the average bill exceeds $75, the output should include a message indicating that too much water is being used. If the average bill is at least $25 but no more than $75, the output should indicate that a typical amount of water is being used. Finally, if the average bill is...