Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

what is wrong with this code? import java.util.*; public class Main { List fizzBuzzList = new ArrayList (100); public void fizzBuzzIterator(){ for (int i =

what is wrong with this code?

import java.util.*;

public class Main {

List fizzBuzzList = new ArrayList<>(100);

public void fizzBuzzIterator(){

for (int i = 1 ; i < 100; i++) {

if (((i % 3) == 0) && ((i % 5) == 0)) {

fizzBuzzList.set(i, "FizzBuzz");

}

else if ((i % 3) == 0) {

fizzBuzzList.set(i, "Fizz");

}

else if ((i % 5) == 0) {

fizzBuzzList.set(i, "Buzz");

}

else {

fizzBuzzList.set(i);

}

}

public void toString(){

return fizzBuzzList.get(i);

}

for(int i = 0; i < fizzBuzzList.size();i++){

System.out.println(fizzBuzzList.get(i).toString());

}

}

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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