اكتب برنامج C لقبول نقطة إحداثيات في نظام إحداثيات XY وحدد في أي ربع تقع نقطة الإحداثيات

  • برمجة
  • برمجة سي c

اكتب برنامج C لقبول نقطة إحداثيات في نظام إحداثيات XY وحدد في أي ربع تقع نقطة الإحداثيات

بيانات للاختبار : 7 9

الخرج المتوقع :

The coordinate point (7,9) lies in the First quadrant.

الأجوبة

/*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);

}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...