25 . Write a C program to find and print the square of each one of the even values from 1 to a specified value.
25 . Write a C program to find and print the square of each one of the even values from 1 to a specified value.
Test Data :
List of square of each one of the even values from 1 to a 4 :
Expected Output:
2^2 = 4
4^2 = 16
#include <stdio.h>
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;
}
Comments
Post a Comment
PLEASE DO NOT ENTER THE SPAM LINK IN THE COMMENT BOX