اكتب برنامج C لطباعة الأرقام من الأدنى إلى الأعلى (ضمناً) ومجموع الأعداد الصحيحة المتتالية من زوج معين من الأرقام

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

اكتب برنامج C لطباعة الأرقام من الأدنى إلى الأعلى (ضمناً) ومجموع الأعداد الصحيحة المتتالية من زوج معين من الأرقام

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

Input a pair of numbers (for example 10,2):
Input first number of the pair: 10
Input second number of the pair: 2
List of odd numbers: 3
5
7
9
Sum=24

الأجوبة

/*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;
}
هل كان المحتوى مفيد؟

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

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