Answer:
Step-by-step explanation:
Supplementary angles add up to 180
∠1 + 50 = 180
∠1 = 180 - 50
∠1 = 130
∠3 +50 = 180 {Supplementary}
∠3 = 180 - 50
∠3 =130
⇒∠1 = ∠3 = 130
Answer:
93
Step-by-step explanation:
5*90 = 450
82+94+89+92 = 357
so
450-357 = 93
hope this helped :)
Answer:
8
Step-by-step explanation:
1) Lets rewrite the expression in expanded form to make is easier to understand:
(8*8)÷(2*2*2)
2) Simplify the interior of the parenthesis:
(64)÷(8)
3) Divide:
8
In pseudocode
num2guess = random(1,100)
pnum = 0
while (pnum != num2guess) {
pnum = ask_player("What number I'm thinking?")
if (pnum > num2guess) {
print("Too high.")
} else if (pnum < num2guess) {
print("Too low.")
}
}
print("Good job!")