Home Forums C Programming Basic C Help — Currency Converter

Viewing 1 reply thread
  • Author
    Posts
    • #2134
      UtaJ93mjohq
      Participant

      **I don’t expect an immediate answer, just need some simple help**

      Write a computer program in C which will request the user to enter a number representing the amount of foreign currency he/she would like to exchange. Your program should output a foreign currency conversion table for at least 6 different currencies, showing how much of each type of foreign currency can be obtained for the amount the user enters.

      The example below shows a foreign currency exchange table for one unit of foreign currency. Your program is interactive and so should work for any input amount from the user not just 1.00. In the example table, the number entered by the user is 1, and it shows that 1 USD is equal to 0.547525 GBP, while 1 GBP is equal to 2.11928 AUD and so forth. If the user enters 2, your table should show how much 2 USD is in GBP, CAD, EUR, etc. along with how much 2 CAD would be in EUR, GBP, USD, etc, for each of the 6 currencies. The example uses real graphics not ASCII-art so it is ok if your table is not as visually pleasing.

      So far this is what I’ve done:

      All the “|” should line up obviously to make it look like a table, but the forum formatted it oddly.

      The basic gist of the program is that the user will input a currency amount (in $US) they wish to convert. After they input the currency amount, the program is supposed to output that table with all the conversions. It should output the entire table every time they put in a currency amount to convert. Inside the actual cells, should be a number going two decimal places (I’m aware it’s %.2f to get that).

      Anyway, I don’t even know if I’ve done everything up to this point correctly. But if I have, my next step (I assume) would be to do the actual conversions. And I don’t particularly know how to do that or what to do. Would I do the conversions within each individual cell in the table? How would I do that? Or would I do them somewhere outside of the table and store them as a variable of some sort and then input that variable into the table somehow?

      If someone could give an example of how they would do the first row (USD across) or describe how they would do it, that would be great.

      Any help/direction/corrections is welcome and very much needed. I know it’s not hard, but this is the very first bit of programming I’ve ever done so…

      Thanks in advance for any help at all.

    • #3451
      GWILouisaxwzkla
      Participant

      could do something like this ( I’m not real good with stdio.h , In school I used iostream.h ) :

Viewing 1 reply thread
  • The forum ‘C Programming’ is closed to new topics and replies.