Assignemnt #11

Code

    /// Name: Ryan Volko
    /// Period: 7
    /// Program Name: Eighth Program
    /// File Name: EighthProg.java
    /// Date Finished: 9/11/2015

    class EighthProg {
    
        public static void main(String[] args) {
        
            //It Should just print the name and number
            System.out.println("Students " + ( 30.0 ));
            //Should also just print name and number
            System.out.println("males " + ( 13.0 ));
            //It should do the math for me
            System.out.println("females " + ( 30.0-13.0 ));
            //This floating piont should do fractions
            System.out.println("Cookies left " + ( 14.0 / 3.0 ));
                
        }
        
    }
            
    

Picture of the output

Assignment 11