
(types on the keyboard).
Time's up! Five minutes and 53 seconds. Wow. So does it work? Well, from a view point, the output looks correct. The overall code is similar to that we went over in class. There are two methods in my program rather than one. The first methods takes in a number and returns an output depending on the number such as numbers being a multiple of 5 returns "Buzz". The second method is the main method that is the basic loop of the program from 1 to 100. This method calls the first method and prints out the output.
Overall, I am satisfied with the code I wrote. I could have made a one method program that would have been faster to write, but having this second method could ensure correct output with a test program. Coding the program went smoothly and I did not run into problems with eclipse. I do notice that I take my time to choose variable names and try to make them specific, rather than one character names. The only thing I think I could improve on is to rely less on eclipse. Having used ellipse for several semesters, there are many shortcuts to do a task. Maybe that's why I took a while to write this code on paper. I've become too dependent on eclipse over the years.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.hawaii.ics314; | |
public class FizzBuzz { | |
public String checkInput(int num){ | |
if (num % 15 == 0){ | |
return "FizzBuzz"; | |
} else if (num % 5 == 0){ | |
return "Buzz"; | |
} else if (num % 3 == 0){ | |
return "Fizz"; | |
} else { | |
return Integer.toString(num); | |
} | |
} | |
public static void main(String[] args){ | |
FizzBuzz program = new FizzBuzz(); | |
for (int count = 1; count < 101; count++){ | |
System.out.println(program.checkInput(count)); | |
} | |
} | |
} |