اكتب برنامج C لقبول نقطة إحداثيات في نظام إحداثيات XY وحدد في أي ربع تقع نقطة الإحداثيات
- برمجة
- برمجة سي c
- 2021-05-04
- Wassim
الأجوبة
/*Write a C program to accept a coordinate point in a XY coordinate system and determine in which quadrant the coordinate point lies*/
#include <stdio.h>
void main()
{
int co1,co2;
printf("Input the values for X and Y coordinate : ");
scanf("%d %d",&co1,&co2);
if( co1 > 0 && co2 > 0)
printf("The coordinate point (%d,%d) lies in the First quandrant.\n",co1,co2);
else if( co1 < 0 && co2 > 0)
printf("The coordinate point (%d,%d) lies in the Second quandrant.\n",co1,co2);
else if( co1 < 0 && co2 < 0)
printf("The coordinate point (%d, %d) lies in the Third quandrant.\n",co1,co2);
else if( co1 > 0 && co2 < 0)
printf("The coordinate point (%d,%d) lies in the Fourth quandrant.\n",co1,co2);
else if( co1 == 0 && co2 == 0)
printf("The coordinate point (%d,%d) lies at the origin.\n",co1,co2);
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال