It is Nevaeh backwards hope that helps! :3 and feel free to pm me if you have anymore questions! :3
        
                    
             
        
        
        
Answer:
Explanation:
The following code is written in Java and loops through 10 times. Each time generating 2 random dice rolls. If the sum is 10 it breaks the loop and outputs a "You Win" statement. Otherwise, it outputs "You Lose"
import java.util.Random;
class Brainly {
    public static void main(String[] args) {
        UseRandom useRandom = new UseRandom();
        boolean youWin = false;
        for (int x = 0; x<10; x++) {
            int num1 = useRandom.getRandom(6);
            int num2 = useRandom.getRandom(6);
            if ((num1 + num2) == 10) {
                System.out.println("Number 1: " + num1);
                System.out.println("Number 2: " + num2);
                System.out.println("You Win");
                youWin = true;
                break;
            }
        }
        if (youWin == false) {
            System.out.println("You Lose");
        }
    }
}
class UseRandom{
    public int getRandom(int n)
    {
        Random r=new Random();
        int rand=r.nextInt(n);
        return rand;
    }}
 
        
             
        
        
        
You got to "insert" and then you go to "shapes" and then you find the symbol you like and you drag and drop it onto the page. Then you can resize to the size and angle you would like it at.
        
             
        
        
        
Popular music characterized by vocals, hardback beat , loud volume and electric guitar :))) I really hope that helped if not let me know! :) <span />