Quiz_3

Back to problem list

1부터 100까지의 숫자를 출력하되, 3의 배수인 숫자는 "Fizz", 5의 배수인 숫자는 "Buzz", 3의 배수이면서 5의 배수인 숫자는 "FizzBuzz"로 대체하여 출력하는 프로그램을 작성하라.

Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.