1067 - Odd Numbers

Problem Link


A Solution in c


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






No comments

Theme images by Jason Morrow. Powered by Blogger.