Answer: P=313 and C=626
Step-by-step explanation:
939=2x+x
939=3x
313=x Printer is 313 and computer is 626
626+313=939
Answer:
648
Step-by-step explanation:
Running this in Python, with the code as follows,
import math
cur_numbers = [0] * 3
num = 0
for i in range(100, 1000):
cur_numbers[2] = i % 10
i = math.floor(i/10)
cur_numbers[1] = i % 10
i = math.floor(i/10)
cur_numbers[0] = i % 10
if(len(set(cur_numbers)) == 3):
num += 1
print(cur_numbers)
print(num), we get 648 as our answer.
Another way to solve this is as follows:
There are 9 possibilities for the hundreds digit (1-9). Then, there are 10 possibilities for the tens digit, but we subtract 1 because it can't be the 1 same digit as the hundreds digit. For the ones digit, there are 10 possibilities, but we subtract 1 because it can't be the same as the hundreds digit and another 1 because it can't be the same as the tens digit. Multiplying these out, we have
9 possibilities for the hundreds digit x 9 possibilities for the tens digit x 8 possibilities for the ones digit = 648
Answer:
q = 2p - 1/3
Step-by-step explanation:
2q + 2p = 1+5q
2q = 1+5q-2p
-3q=1-2p
-q = 1-2p/3
q= 2p-1/3
25% of 80
25/100 or 1/4 x 80 = 20
So $20 were spent on shorts, then $60 were left over.
65% of 60 on sandals.
so 65/100 x 60 = 39
So we can see that the sandals cost $39.
Answer:MARK BRAINLLEST MARK BRAINLLEST
(−5/2, 5/2√3)
<h2 />
Step-by-step explanation: