I think the answer would be 85.1
You multiply the number 8 to each term in the parentheses.
8 x 5g = 40g; 8 x 5 = 40; 8 x (-2) = -16
Combine these together and it would be 40g + 40 - 16
Answer:
Step-by-step explanation:
We can get this done by using the code
def digits(n):
count = 0
if n == 0:
return 1
while (n > 0):
count += 1
n= n//10
return count
Also, another way of putting it is by saying
def digits(n):
return len(str(n))
------------------------------------------
print(digits(25)) # Should print 2
print(digits(144)) # Should print 3
print(digits(1000)) # Should print 4
print(digits(0)) # Should print 1
Doing this way, we've told the system to count the number of figures that exist in the number. If it's 1000 to 9999, then it records it as 4 digits. If it's 100 - 999, then it records it as 3 digits. If it's 10 - 99, it records as 2 digits. If it's 0 - 9, then it has to record it as a single digit.
Thanks
Answer:
9%
Step-by-step explanation:
percent increase is calculated as
× 100%
increase = $3.87 - $3.54 = $0.33 , then
% increase =
× 100% ≈ 9% ( to the nearest whole percent )
Answer:
ITS D ITS NOT THERE
Step-by-step explanation: