اكتب برنامج C يقرأ مصفوفة من الأعداد الصحيحة (الطول 7) ، واستبدل العنصر الأول من المصفوفة برقم مُعطى
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program that reads an array of integers (length 7), and replace the first element of the array by a give number and replace each subsequent position of the array by the double value of the previous*/
#include <stdio.h>
int main ()
{
int array_nums[7], i, x, k;
printf("Input the first element of the array:\n");
scanf("%d", &x);
for (k = 0, i = x; k < 7; i *= 2, k++)
{
array_nums[k] = i;
}
printf("\nArray elements:\n");
for (i = 0; i < 7; i++)
{
printf("array_nums[%d] = %d\n", i, array_nums[i]);
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال