اكتب برنامج C يقبل عددًا صحيحًا موجبًا n أقل من 100 من المستخدم ويطبع المجموع 14 + 24 + 44 + 74 + 114 + • • • + m4
- برمجة
- برمجة سي c
- 2021-05-02
- Wassim
الأجوبة
/*Write a C program that accepts a positive integer n less than 100 from the user and prints out the sum 14 + 24 + 44 + 74 + 114 + • • • + m4 , where m is less than or equal to n. Print appropriate message*/
#include <stdio.h>
int main() {
int i, j, n, sum_int = 0;
printf("Input a positive number less than 100: \n");
scanf("%d", & n);
if (n < 1 || n >= 100) {
printf("Wrong input\n");
return 0;
}
j = 1;
for (i = 1; j <= n; i++) {
sum_int += j * j * j * j;
j += i;
}
printf("Sum of the series is %d\n", sum_int);
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال