Assignment #11 Numbers and Math

Code

    /// Name: Koosha Kimelman
    /// Period: 7
    /// Program Name: Numbers and Math
    /// File Name: NumbersAndMatch.java
    /// Date Completed: 9/11/15
    
    public class NumbersAndMath {
    
    	public static void main( String[] args ) {
        
            // Text
    		System.out.println( "I will now count my chickens:" );
            
            // Calculation for number of hens
    		System.out.println( "Hens " + ( 25.0 + 30.0 / 6.0 ) );
            
            // Calculation for number of roosters
    		System.out.println( "Roosters " + ( 100.0 - 25.0 * 3.0 % 4.0 ) );
            
            // Text
    		System.out.println( "Now I will count the eggs:" );
            
            // Calculation for number of eggs
    		System.out.println( 3.0 + 2.0 + 1.0 - 5.0 + 4.0 % 2.0 - 1.0 / 4.0 + 6.0 );
            
            // Question about inequality
    		System.out.println( "Is it true that 3 + 2 < 5 - 7?" );
            
            // True or False for inequality
    		System.out.println( 3.0 + 2.0 < 5.0 - 7.0 );
            
            // Question about mathematic expression and answer
    		System.out.println( "What is 3 + 2? " + ( 3.0 + 2.0 ) );
            
            // Question about mathematic expression and answer
    		System.out.println( "What is 5 - 7? " + ( 5.0 - 7.0 ) );
            
            // Text
    		System.out.println( "Oh, that's why it's false." );
            
            // Text
    		System.out.println( "How about some more." );
            
            // Text and True or False for inequality
    		System.out.println( "Is it greater? " + ( 5.0 > -2.0 ) );
            
            // Text and True or False for inequality
    		System.out.println( "Is it greater or equal? " + ( 5.0 >= -2.0 ) );
            
            // Text and True or False for inequality
    		System.out.println( "Is it less or equal? " + ( 5.0 <= -2.0 ) );
    	}
    }
    

Picture of the output

Assignment 11