Assignemnt #84 Notice

Code

    /// Name: Caelan Dorstad
    /// Period: 6
    /// Program Name: noti
    /// File Name: noti.java
    /// Date Finished: 2/24/2016
    
    public class noti{
    public static void main(String[] args){
        for (int n=1; n <= 20; n++){
            System.out.print(n);
            
            if (n % 2 ==0){
                System.out.println("<");
            }
            else {
                System.out.println(" ");
            }
            
        }
    }
}
            
                               

    

Picture of the output

Assignment 10