اكتب برنامج C لطباعة الأرقام من الأدنى إلى الأعلى (ضمناً) ومجموع الأعداد الصحيحة المتتالية من زوج معين من الأرقام
- برمجة
- برمجة سي c
- 2021-05-01
- Wassim
الأجوبة
/*Write a C program to print the numbers from the lowest to the highest (inclusive) and the sum of consecutive integers from a given pair of numbers*/
#include
int main()
{
int x, y, i, total = 0;
printf("\nInput a pair of numbers (for example 10,2):");
printf("\nInput first number of the pair: ");
scanf("%d", &x);
printf("\nInput second number of the pair: ");
scanf("%d", &y);
if (x<y)
{
return 0;
}
printf("\nList of odd numbers: ");
for(i = y; i<=x; i++)
{
if ((i%2) != 0)
{
printf("%d\n", i);
total += i;
}
}
printf("Sum=%d\n", total);
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال