Purchase Solution

Pseudo-cod Program to calculate distance of vehicle travelle

Not what you're looking for?

Ask Custom Question

The distance a vehicle travels can be calculated as follows:

Distance = Speed * Time

For example, if a train travels 40 miles-per-hour for three hours, the distance traveled is 120 miles.

Write a program that asks for the speed of a vehicle (in miles-per-hour) and the
number of hours it has traveled. It should use a loop to display the distance a vehicle has traveled for each hour of a time period specified by the user. For example, if a vehicle is
traveling at 40 mph for a three-hour time period, it should display a report similar to the one that follows:

Hour Distance Traveled
-----------------------------
1 40
2 80
3 120

Input Validation: Do not accept a negative number for speed and do not accept any value less than 1 for time traveled.

(Please avoid using programming code based on C#, C++, Java, Python, Ruby, etc. -- We are still learning basic modeling and using statement terms like Display, While, Declare, Count, Real, Integer, etc. Thanks!)

Purchase this Solution

Solution Summary

The solution provides a well structured pseudo-code written using basic terms (declare, display, input ) for easy understanding. Highly recommended for starters learning to build programming logic and working with pseudo-code.

Purchase this Solution


Free BrainMass Quizzes
C# variables and classes

This quiz contains questions about C# classes and variables.

C++ Operators

This quiz tests a student's knowledge about C++ operators.

Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.