| Current Path : /var/www/html/venkat/check3/file/rgiit/ |
| Current File : /var/www/html/venkat/check3/file/rgiit/rit2015018_2.c |
#include <stdio.h>
int main()
{
int n, //Variable for number to be taken as input
i; //Variable for iteration of 'for' loop
printf("Enter the Number ");
scanf("%d",&n);
for( i=3; i<=n; i+=3)
printf("%d ",i);
printf("\n");
return 0;
}