A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a C# Sharp program to accept a coordinate point in an XY coordinate system and determine in which quadrant the coordinate point lies
Q:

Write a C# Sharp program to accept a coordinate point in an XY coordinate system and determine in which quadrant the coordinate point lies

0

Write a C# Sharp program to accept a coordinate point in an XY coordinate system and determine in which quadrant the coordinate point lies

Sample Output:

Find the quadrant in which the coordinate point lies:                                                         
------------------------------------------------------
Input the value for X coordinate :0                                                                           
Input the value for Y coordinate :0                                                                           
The coordinate point (0 0) lies at the origin.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;  
public class Exercise9  
{  
    public static void Main()
{
	int co1,co2;

    Console.Write("\n\n");
    Console.Write("Find the quadrant in which the coordinate point lies:\n");
    Console.Write("------------------------------------------------------");
    Console.Write("\n\n");

    Console.Write("Input the value for X coordinate :");
    co1 = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the value for Y coordinate :");
    co2 = Convert.ToInt32(Console.ReadLine());


	if( co1 > 0 && co2 > 0)
	  Console.Write("The coordinate point ({0} {1}) lies in the First quandrant.\n\n",co1,co2);
	else if( co1 < 0 && co2 > 0)
	  Console.Write("The coordinate point ({0} {1}) lies in the Second quandrant.\n\n",co1,co2);
	else if( co1 < 0 && co2 < 0)
	  Console.Write("The coordinate point ({0} {1}) lies in the Third quandrant.\n\n",co1,co2);
	else if( co1 > 0 && co2 < 0)
	  Console.Write("The coordinate point ({0} {1}) lies in the Fourth quandrant.\n\n",co1,co2);
	else if( co1 == 0 && co2 == 0)
	  Console.Write("The coordinate point ({0} {1}) lies at the origin.\n\n",co1,co2);

}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now