Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions