public class CompoundPractice { public static void main(String[] args) { //#1 int cubsWins = 77; //whoops! the Cubs won another game last night. Please make the number of wins go up by one on the next line //WITHOUT doing "cubsWins = 78;". /*CODE HERE*/ System.out.println("The Cubs have won " + cubsWins + " games"); //#2 int salary = 5; //congrats! Your hourly salary at your job just tripled! Please make the value stored in salary triple //WITHOUT doing "salary = 15". /*CODE HERE*/ System.out.println("Your new salary is $" + salary); //#3 int gradeA = 80; int gradeB = 81; int biggerGrade; //assign biggerGrade to be the larger of the two grades by using a Math function /*CODE HERE*/ //uncomment the line below after assigning biggerGrade appropriately //System.out.println("The bigger of " + gradeA + " and " + gradeB + " is " + biggerGrade); //#4 double angleA = Math.PI/3; double hypotenuse = 5; double oppositeA; //In a right triangle, you know that angle A is π/3 radians and has a hypotenuse of 5. Use //a Math trig function and the hypotenuse to calculate the length of the side opposite of angle A. /*CODE HERE*/ //uncomment the line below after assigning oppositeA appropriately //System.out.println("The length of the side opposite of angle A is " + oppositeA); } }