Answer:
6
Explanation:
The int functions founds down to the nearest whole number, which in this case would be 6.
Answer:
4
Explanation:
by counting the number of the colum to. be counted well and nicely
Answer:
Explanation:
The following code is written in Python. It asks the user to enter the current balance and the annual interest rate. It then calculates the monthly interest rate and uses that to detect the interest that will be earned for the next month. Finally, printing that to the screen. A test output can be seen in the attached picture below.
balance = int(input("Enter current Balance: "))
interest = int(input("Enter current annual interest %: "))
interest = (interest / 12) / 100
next_month_interest = balance * interest
print('$ ' + str(next_month_interest))
Answer:
umm I think it's C it's between that one and d so the 1st and 4th but leaning more towards C
Answer:
You use a for loop when you know how many times you want to run the loop
Explanation:
if you dont know, use a while loop