Ads

Friday, May 1, 2020

URI Online Judge 1059 Even Numbers solution





URI Online Judge program no 1059 Even Numbers solutions

#include <stdio.h>
int main()
{
    int a;
    for(a=2; a<=100; a=a+2) // a must be little by 100
        printf("%d\n",a);
    return 0;
}

0 comments:

Post a Comment