with C# FizzBuzz is a group word game for children to teach them about division. Players...

Free

50.1K

Verified Solution

Question

Programming

with C# FizzBuzz is a group word game for children to teach themabout division. Players take turns to count incrementally,replacing any number divisible by three with the word fizz, anynumber divisible by five with the word buzz, and any numberdivisible by both with fizzbuzz.

Some interviewers give applicants simple FizzBuzz-style problemsto solve during interviews. Most good programmers should be able towrite out on paper or whiteboard a program to output a simulatedFizzBuzz game in under a couple of minutes.

Create a console application that outputs a simulated FizzBuzzgame counting up to 100. The output should look something likethis:

1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz, 11, Fizz, 13, 14,FizzBuzz,
16, 17, Fizz, 19, Buzz, Fizz, 22, 23, Fizz, Buzz, 26, Fizz, 28, 29,FizzBuzz, 31,
32, Fizz, 34, Buzz, Fizz, 37, 38, Fizz, Buzz, 41, Fizz, 43, 44,FizzBuzz, 46,
47, Fizz, 49, Buzz, Fizz, 52, 53, Fizz, Buzz, 56, Fizz, 58, 59,FizzBuzz, 61,
62, Fizz, 64, Buzz, Fizz, 67, 68, Fizz, Buzz, 71, Fizz, 73, 74,FizzBuzz, 76,
77, Fizz, 79, Buzz, Fizz, 82, 83, Fizz, Buzz, 86, Fizz, 88, 89,FizzBuzz, 91,
92, Fizz, 94, Buzz, Fizz, 97, 98, Fizz, Buzz.

Answer & Explanation Solved by verified expert
4.1 Ratings (853 Votes)

using System;

class GFG{

   

// Driver Code

public static void Main()

{

    int n = 100;

    // Loop for 100 times

    for(int i = 1; i <= n; i++)                            

    {

         

        // Number divisible by 15(

        // divisible by both 3 & 5),

        // print 'FizzBuzz' in place

        // of the number

        if (i % 15 == 0)

            Console.Write(\"FizzBuzz\" + \" \");

        // Number divisible by 3,

        // print 'Fizz' in place

        // of the number

        else if (i % 3 == 0)    

            Console.Write(\"Fizz\" + \" \");

        // Number divisible by

        // 5, print 'Buzz'

        // in place of the number

        else if (i % 5 == 0)                                            

            Console.Write(\"Buzz\" + \" \");

         

        // Print the numbers

        else

            Console.Write(i + \" \");                    

    }

}

}


Get Answers to Unlimited Questions

Join us to gain access to millions of questions and expert answers. Enjoy exclusive benefits tailored just for you!

Membership Benefits:
  • Unlimited Question Access with detailed Answers
  • Zin AI - 3 Million Words
  • 10 Dall-E 3 Images
  • 20 Plot Generations
  • Conversation with Dialogue Memory
  • No Ads, Ever!
  • Access to Our Best AI Platform: Flex AI - Your personal assistant for all your inquiries!
Become a Member

Other questions asked by students