👤

Using JavaScript Language. Given a number n, for each integer i in the range from 1 to n inclusive, print one value per line as follows:
• If i is a multiple of both 3 and 5, print FizzBuzz.
• If i is a multiple of 3 (but not 5, print Fizz.
• If i is a multiple of 5 (but not 3), print Buzz.
• If i is not a multiple of 3 or 5, print the value of i

Function Description
Complete the function fizzBuzz in the editor below.
fizzBuzz has the following parameter(S):
int n: upper limit of values to test (inclusive)
Returns: NONE
Prints:
The function must print the appropriate response for each value I in the set {1, 2, ... n} in ascending order, each on a separate line


Répondre :

Merci d'avoir visité notre site Web dédié à Mathématiques. Nous espérons que les informations partagées vous ont été utiles. N'hésitez pas à nous contacter si vous avez des questions ou besoin d'assistance. À bientôt, et pensez à ajouter ce site à vos favoris !


En Studier: D'autres questions