1 million is 1 x 10^6
1 billion is 1 x 10^9
1 trillion is 1 x 10^12
So 12 trillion miles is 12 x 10^12 which converts to 1.2 x 10^1 x 10^12 = 1.2 x 10^13
Answer:
C
Explanation:
Every single one of these things are bad which is why all but one is less
Answer:
okkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Answer:
Answered in Python
for i in range(21):
for j in range(i):
print(i, end=' ')
print(" ")
Explanation:
This iteration iterates from 1 to 20
for i in range(21):
This iteration iterates from 1 to current number
for j in range(i):
This prints the current number in the a number of times equal to itself
print(i, end=' ')
This enables printing on new line
print(" ")