本文介绍了[不是问题]编写打印数字的程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
编写一个程序,打印从1到100的数字。但是对于三个打印的Fizz而不是数字的倍数和五个打印Buzz的倍数。对于三和五的倍数的数字打印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".
推荐答案
这篇关于[不是问题]编写打印数字的程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!