Posted  by 

Pseudocode For The Currency Conversion Program Design

How to Design a Flowchart for Currency Conversion. Designing a currency conversion flowchart allows a programmer to see the different stages a currency conversion program involves. A flowchart is a visual representation of what happens to a piece of data during processing. Flowcharts use standardized symbols such as circles, ovals. Free Essays on Algorithm Pseudocode. Week 4 Assignment Currency Conversion Design IT 210 Week 5 Checkpoint Simple Array Process IT 210 Week 5 DQ 1 and DQ 2 IT 210 Week 6 CheckPoint. Based on the Currency Conversion requirements and Input-Process-Output table you generated in Week Two. Developthe pseudocode for the program design. This preview shows pages 1–2.Sign up to view the full content. Install xmonad on ubuntu server backup. To view the full content. How to Design a Flowchart for Currency Conversion. Designing a currency conversion flowchart allows a programmer to see the different stages a currency conversion program involves. A flowchart is a visual representation of what happens to a piece of data during processing. Flowcharts use standardized symbols such as circles, ovals. This preview shows pages 1–2.Sign up to view the full content. To view the full content.

ITP-UU-09/11 SPIN-09/11 INTRODUCTION TO THE THEORY OF BLACK HOLES⁄ Gerard ’t Hooft Institute for Theoretical Physics Utrecht University and Spinoza Institute. Black Holes Book Summary: This introduction to the fascinating subject of black holes fills a significant gap in the literature which exists between popular, non-mathematical expositions and advanced textbooks at the research level. It is designed for advanced undergraduates and first year postgraduates as a useful stepping-stone to the advanced literature. Black holes an introduction raine pdf download.

What is the currency conversion
Topics:United States dollar, Currency, Pound sterlingPages: 4 (425 words)Published: April 29, 2012
The

Pseudocode For The Currency Conversion Program Design Plot To Follow

Currency Conversion Design
Appendix H
Currency Conversion Design Assignment—Hierarchy Chart
Complete a hierarchy chart for the application by typing into the textboxes below.
Associate Program Material
Appendix I
Currency Conversion Development Assignment—Flowcharts
Complete the flowcharts for the assignment by typing into the textboxes below.
Control Flow Diagram—Main Control
Control Flow Diagram—Display Menu
Control Flow Diagram—Get_Int_Value
Control Flow Diagram—Convert Currency
Control Flow Diagram—Display_Results
Pseudocode
Main module
Declare Type as Integer
Declare 1 as String
Declare 2 as String
Declare 3 as String
Declare 4 as String
Declare 5 as String
Declare Amount as Float
Declare CDXRate as Float
Declare MPXRate as Float
Declare EPXRate as Float
Declare JYXRate as Float
Declare FFXRate as Float
Declare USD as Float
Declare ExchRate as Float
Call Display menu module
Call Get input module
Call Convert currency module
Call Display results module
End
Display menu module
Write “This program is used to convert currency from US Dollars to one of the following currencies.” Set Type = “1”, “2”, “3”, “4”, or “5”
Set 1 = Canadian Dollars
Set 2 = Mexican Pesos
Set 3 = English Pounds
Set 4 = Japanese Yen
Set 5 = French Francs
Repeat
Write “What nationality of currency do you want to convert today? 1 = Canadian Dollars, 2 = Mexican Pesos, 3 = English Pounds, 4 = Japanese Yen, 5 = French Francs”
Input Type = “1”. “2”, “3”, “4”, or “5” Until Response = “1”. “2”, “3”, “4”, or “5” End
Get_int_value module
Repeat
Write “Enter US currency in dollars.”
Input USD
Until USD >0.01
End
Convert currency module
Set CDXRate = 1.4680
Set MPXRate = 9.5085
Set EPXRate = 1.6433
Set JPXRate = 104.9200
Set FFXRate = 6.2561
If (Type = 1)
Set ExchRate = CDXRate
Repeat
Write “Enter US currency in dollars.”
Input USD
Until..