Quantcast
Channel: User user2023861 - Code Review Stack Exchange
Viewing all articles
Browse latest Browse all 35

Answer by user2023861 for FizzBuzz Problem Solution

$
0
0

You have four calls to System.out.println(arg). If you want to change your code from printing to the console to writing to a file or a database, you have to change four lines in your code even though you're really only changing one "thing". Why not pull out the four System.out.println(arg)s and insert one after the if conditions like so:

public class FizzBuzz{  public static void main(String[] args){    for(int i = 1 ; i <= 100 ; ++i){      String str;      if(i % (5*3) == 0){        str = "FizzBuzz";      }else if(i % 3 == 0){        str = "Fizz";      }else if(i % 5 == 0){        str = "Buzz";      }else        str = Integer.toString(i);       System.out.println(str);    }  }}

I agree with others that your if conditions are ugly.


Viewing all articles
Browse latest Browse all 35

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>