Quote:
Originally posted by Tylerbv
Seems pretty simple unless I'm mis-reading
Pseudo code would be (a more detailed version) of
Print statement asking for # of miles (call this variable x)
Print x * 1.609
Print statement asking for # of km (call this variable y)
Print y * 0.6124
Wouldn't that be it? 
|
Im pretty much an idiot when it comes to coding.
// Ask User for Miles & Kilometers
Display "Enter Miles: "
Input Miles
Display "Enter Kilometers"
Input Kilo
// Calculate and display Miles converted to Kilometers
Kilometers= NumberofMiles* 1.609
Im also supposed to include standard documentation and comments