Computer Science, asked by singhalka2628, 13 hours ago

Write a program in QBASIC to take input Distance and Time and calculate the speed.​

Answers

Answered by biswajitkarmakar078
0

Answer:

float time, distance, speed; printf("Enter Your distance "); scanf("%f", &distance); printf("Enter Your speed "); scanf("%f", &speed); time=distance/speed; printf("time is %f",time);

Similar questions