To professionally adress an introduction in a cover letter D. would be the correct answer.
Answer: For the first dot you can I want a playground in my community
Make homework easier I dont know foor the other two
Explanation:
Is it this question? I think the hardest question in the world is the one you just asked! Am I right?
num = float(input("Enter a number: "))
num1 = int(num)
print(num - num1)
I hope this helps!
Answer:
speed = float(input("Enter the speed: "))
hours = int(input("Enter the hours: "))
distance = 0
for i in range(hours):
distance += speed * 1
print("The distance after " + str(i+1) + ". hour(s): " + str(distance))
Explanation:
*The code is in Python.
Ask the user to enter the speed and the hours
Initialize the distance as 0
Create a for loop that iterates hours times. Inside the loop, calculate the cumulative distance traveled at the end of each hour and print it (Note that the distance = speed x hour)