Question: Write a program using Python that uses console.log to print all the numbers from 1 to 100, with two exceptions. For numbers divisible by 3,

Write a program using Python that uses console.log to print all the numbers from 1 to 100, with two exceptions. For numbers divisible by 3, print "Fizz" instead of the number, and for numbers divisible by 5 (and not 3), print "Buzz" instead.

something like this

Initialize Constants

LOOP_START = 0

LOOP_END = 101

# Request user input

# No user input required

# COMPUTE AND DISPLAY RESULTS

for (var ; x <= 100; x++) {

if ((number % 3 === 0) && (number % 5 !== 0)) {

console.log("Fizz");

}

else if ((number % 5 === 0) && (number % 3 !== 0)) {

console.log("Buzz");

}

else if ((number % 5 === 0) && (number % 3 === 0)) {

console.log("FizzBuzz");

}

else {

console.log(x);

}

i think i did it wrong. HELP PLEASEEE

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!