JamBot3000 / Hacktober-Challenges

A collection of issues for begginers for Hacktoberfest challenges! I review PR's daily!
18 stars 38 forks source link

Fizz Buzz Game #88

Closed AyushRajSharma closed 4 years ago

AyushRajSharma commented 4 years ago

FIZZ BUZZ GAME Write a short program that prints each number from 1 to n on a new line.(n is number given by user)

For each multiple of 3, print "Fizz" instead of the number.

For each multiple of 5, print "Buzz" instead of the number.

For numbers which are multiples of both 3 and 5, print "FizzBuzz" instead of the number.

AyushRajSharma commented 4 years ago

10

Divyanshu-info commented 4 years ago

Can i make this game in C++