اكتب برنامج C يقبل زوجًا من الأرقام من المستخدم واطبع سلسلة أرقام من الرقم الأدنى إلى الأعلى قم أيضًا بطباعة متوسط قيمة السلسلة
- برمجة
- برمجة سي c
- 2021-05-02
- Wassim
الأجوبة
/*Write a C program that accepts a pair of numbers from the user and print the sequence from the lowest to highest number. Also, print the average value of the sequence*/
#include <stdio.h>
int main () {
int p, x = 1, y = 1, i = 0, temp = 0;
float sum_val = 0;
printf("Input two pairs values (integer values):\n");
scanf("%d %d", &x, &y);
if (x > 0 && y > 0)
{
if (y < x)
{
temp = x;
x = y;
y = temp;
}
printf("\nSequence from the lowest to highest number:\n");
for (p= 0, i = x; i <= y; i++)
{
sum_val += i;
printf("%d ", i);
p++;
}
printf("\nAverage value of the said sequence\n%9.2f",sum_val/p);
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال