Skip to content

Instantly share code, notes, and snippets.

@tenkoma
Created January 22, 2011 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tenkoma/791269 to your computer and use it in GitHub Desktop.
Save tenkoma/791269 to your computer and use it in GitHub Desktop.
FizzBuzz Program written in Java
class F{
public static void main(String[] a){
for(int i=1;i<101;i++){
String s="";
if(i%3==0)s+="Fizz";
if(i%5==0)s+="Buzz";
if(s=="")s=String.valueOf(i);
System.out.println(s);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment