I'm trying to get a dice roller happening and I'm having some difficulty adding a loop somewhere so the program doesn't quit after one roll. I want to ask the user if they want to roll and it rolls by saying "y." I want to end the program by asking the user the same question but it ends with "n"
/*
    Natasha Shorrock
    Assignmnt A6
    11/07/16
     */
    package diceroller;
    import java.util.Random;
    import java.util.Scanner;
    public class DiceRoller {
        public static void main(String []args) {
            System.out.println(" Do you want to roll the dice? ");
            Random dice = new Random();
            Scanner input = new Scanner(System.in);
            int faces;
            int result;
            System.out.println("Dice Roller\n");
            System.out.println("How many faces does the dice have?");
            faces = input.nextInt();
            result = dice.nextInt(faces) + 1;
            System.out.println("\nThe dice rolled a " + result );
        }//Dice Roller
    }//class DiceRoller
 
     
     
     
    