BuzzFizz Program in C

Advertisements

Prev Tutorial Next Tutorial

Buzz Fizz Program in C

Write a program in C which prints the numbers from 1 to 100. But, multiples of 3 should be replaced with "Fizz", multiples of 5 should be replaced with "Buzz" and multiples of both 3 and 5 should be replaced with "FizzBuzz"?.

Buzz Fizz Program in C

#include<stdio.h>
#include<conio.h>

void main()
{
int no, i;
clrscr();
printf("Enter Range of numbers: ");
scanf("%d",&no);
for(i=1; i<=no; i++)
{
if((i % (3*5)) == 0)
{
printf("FizzBuzz\n");
}
else if ((i % 5) == 0)
{
printf("Buzz\n");
}
else if ((i % 3) == 0)
{
printf("Fizz\n");
}
else
{
printf("%d\n",i);
}
}
getch();
}
buzz fizz program
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements