Write a C# Sharp program to accept a coordinate point in an XY coordinate system and determine in which quadrant the coordinate point lies
- برمجة سي شارب
- برمجة
- 2021-05-17
- MarwaMohammed
الأجوبة
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);
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال