Assignemnt #70

Code

///colin hinton
///5th period
///Flip Again
///FlipAgain.java
///11/12/2015


import java.util.Random;
import java.util.Scanner;

public class FlipAgain
{
	public static void main( String[] args )
	{
		Scanner keyboard = new Scanner(System.in);
		Random rng = new Random();

		String again;
       
		do 
		{
            int flip = rng.nextInt(2);
            String coin;
            if ( flip == 1 )
                coin = "HEADS";
            else
                coin = "TAILS";

                System.out.println( "You flip a coin and it is... " + coin );

                System.out.print( "Would you like to flip again (y/n)? " );
                again = keyboard.next();
            
		} while (again.equals("y"));
	}
}
// the program still works after making the small changes and removing the first line of code because having the first lines and a while-statment. 
is the same as just having a do while.

       

    

Picture of the output

Assignment 1