
Programming Logic and Design, Introductory 7th Edition by Joyce Farrell
Edition 7ISBN: 1285225562
Programming Logic and Design, Introductory 7th Edition by Joyce Farrell
Edition 7ISBN: 1285225562 Exercise 17
Research current rates of monetary exchange. Draw a flowchart or write pseudocode to represent the logic of a program that allows the user to enter a number of dollars and convert it to Euros and Japanese yen.
Step-by-step solution
Step 1 of 2
The following converts currency dollars to Euros and Yens:
Note: The conversions are made as per latest currency value i.e JAN-2014.
Start
Input dollars
Set Euros= 0.73 *dollars
Set Yens = 0.0358*dollars
Output Euros
Output Yens
Stop
Step 2 of 2
Programming Logic and Design, Introductory 7th Edition by Joyce Farrell
Why don’t you like this exercise?
Other Minimum 8 character and maximum 255 character
Character 255