Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/check3/file/rgiit/
Upload File :
Current File : /var/www/html/venkat/check3/file/rgiit/rit2015060_2.c

/* c program to print the multiple of 3 upto n */
#include<stdio.h>
int main()
{
	int i,n;

	printf("value of n");
	scanf("%d",&n);

	for(i=1;i<=n/3;i++)
	{
		printf("%d\t",3*i);
	}
	
	return 0;
}