اكتب برنامج C لإيجاد وطباعة مربع كل من القيم الزوجية من 1 إلى قيمة محددة
- برمجة
- برمجة سي c
- 2021-05-01
- Wassim
الأجوبة
/*Write a C program to find and print the square of each one of the even values from 1 to a specified value*/
#include
int main() {
int x, i;
printf("Input an integer: ");
scanf("%d", &x);
printf("List of square of each one of the even values from 1 to a %d :\n",x);
for(i = 2; i <= x; i++) {
if((i%2) == 0) {
printf("%d^2 = %d\n", i, i*i);
}
}
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال