Assignemnt #84 and Noticing Even Numbers

Code

    /// Name: Brian Phillips
    /// Period: 5
    /// Program name: EvenNum.java
    /// File Name: Noticing Even Numbers
    /// Date Finished: 3/1/2016
      
      public class FizzBuzz
      {
          public static void main(String[] args)
          {
              for (int i=1; i<=100;i++)
              {
                  
                  if (i%3==0)
                      System.out.print("Fizz");
                  else if (i%5==0)
                      System.out.print("Buzz");
                  else
                      System.out.print(i);
                  
              }
          }
      }
    

Picture of the output

NoticingEvenNumbers.html