1073 - Even Square

Problem Link


A Solution in c


#include<stdio.h>
int main()
{
    int i, n;
    scanf("%d", &n);
    for(i = 2; i <= n; i=i+2)
    {
        printf("%d^2 = %d\n", i, i*i);

    }
    return 0;
}




No comments

Theme images by Jason Morrow. Powered by Blogger.