expand icon
book Programming Logic and Design, Introductory 7th Edition by Joyce Farrell cover

Programming Logic and Design, Introductory 7th Edition by Joyce Farrell

النسخة 7الرقم المعياري الدولي: 1285225562
book Programming Logic and Design, Introductory 7th Edition by Joyce Farrell cover

Programming Logic and Design, Introductory 7th Edition by Joyce Farrell

النسخة 7الرقم المعياري الدولي: 1285225562
تمرين 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.

الحلول خطوة بخطوة
موثّق
like image
like image

الخطوة 1 من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


الخطوة 2 من 2

close menu
Programming Logic and Design, Introductory 7th Edition by Joyce Farrell
cross icon