Assignemnt #7

Math And Numbers

public class MathAndNumbers
{
    public static void main( String[] args )
    {
        System.out.println( "I will now count my chickens:" );
        
        System.out.println( "Hens " + ( 25 + 30 / 6) );
        System.out.println( "Roosters " + ( 100 - 25 * 3 % 4 ) );
        // just saying the number of each
        System.out.println( "Now I will count the eggs;" );
        
        System.out.println( 3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6 );
        //inserting calculations
        System.out.println( "Is it true that 3 + 2 < 5 - 7?" );
        
        System.out.println( 3 + 2 < 5 - 7 );
        
        System.out.println( "What is 3 + 2?" + ( 3 + 2 ) );
        
        System.out.println( "What is 5 - 7?" + ( 5 - 7) );
        //asking questions then solving
        System.out.println( "Oh, thats why its false" );
        
        System.out.println( "How about some more?" );
        
        System.out.println( "Is it greater?" + ( 5 > -2) );
        System.out.println( "Is it greater or equal?" + ( 5>= -2) );
        System.out.println( "Is it less or equal?" + ( 5 <= -2) );
        //asking questions and thgen solving them                   
    }
}
    
    

Picture of the output

Assignment 7