Meter to kilometers
Write a program that receives distance to meter and converts to kilometers and displays on output
Tips: Each km = 1000 m
Write a program that receives distance to meter and converts to kilometers and displays on output
Tips: Each km = 1000 m
m=float(input("Enter yor metr:"))
a=m/1000
print(a)
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
M=float(input("m: ")) print(M/1000,"KM")
meter = float(input("a: ")) kilometers = float(input("b: ")) print(meter/kilometers)
m = float(input("masafat ra ba vahed metr vared konid: ")) k = 1000 while m >= 0 : print('masafat mored nazar shoma ba vahed kilo metr barabar ast ba: ', m / k) m = float(input("masafat ra ba vahed metr vared konid: "))
distance = float (input ('Write the distance in kilometers: '))
area = distance * 1000
print (area)
Transform meter to kilometers:distance = float (input ('Write the distance in meters: '))
area = distance / 1000
print (area)
meter = float(input('meter:'))
km = (meter * .001)
print(km)
metr=float(input("metr")) k=metr/1000 print("km":,k)
Submitting answers is currently unavailable.
Write a program that can obtain the average infinite number of numbers: First, the program must receive the user's numbers (until the user does not enter the number 0, the numbers must continue ...
Write a program that receives a store product listing including name and product price and will continue until the amount of empty value for the product name is entered; Then the product name is displayed as a list ...
Write a program that receives a solar date from the input (in the format of yyyy/mm/dd). Then convert the date to AD and print in the output
Write a program that obtained a person's / BMI body / BMI formula and, according to the information below, shows the status of the person BMI = w / h * h formula = weight divided by second power BMI ...
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.