اكتب برنامج C للتحقق مما إذا كان رقمان في زوج معين بترتيب تصاعدي أو تنازلي
- برمجة
- برمجة سي c
- 2021-05-01
- Wassim
الأجوبة
/*Write a C program to check whether two numbers in a pair is in ascending order or descending order*/
#include
int main()
{
int x, y, i, total = 0;
printf("\nInput a pair of numbers (for example 10,2 : 2,10):");
printf("\nInput first number of the pair: ");
scanf("%d", &x);
printf("\nInput second number of the pair: ");
scanf("%d", &y);
if (x>y)
{
printf("The pair is in descending order!");
}
else
{
printf("The pair is in ascending order!");
}
printf("\n");
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال