2/5 is greater because it would equal 40/100 which is greater than 35/100
Answer:
ima just say 10 and 6 my G I'm kinda dumb but u could try it
Answer:
2/6
Step-by-step explanation:
the circle is devided into 3 pieces and one piece is taken , so if u multiply 1/3 by 2 it equals to 2/6
Answer:
3.125 was Jeter's batting average
Step-by-Step Explanation:
Just divide his bat number with the total hits
So, ---> 500 at bats / 160 hits
500/160 = 3.125
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886