0% found this document useful (0 votes)
76 views50 pages

Computer Science Project Final Documentation Hari

Uploaded by

Srinandan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
76 views50 pages

Computer Science Project Final Documentation Hari

Uploaded by

Srinandan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
PUSHPALATA (6) Vidya mandir SENIOR 2 hn Affiliation Code No: 1930237 COMPUTER SCIENCE PROJECT CURRENCY CONVERSION Submitted by: S.HARI KRISHNA X1-G Roll No: 11727 ae a Vidya mandir SENIOR ya ig are Affiliation Code No: 1930237 CERTIFICATE COMPUTER SCIENCE Certified to be the bonafide project work done by S.HARI KRISHNA of Class XI Section G in Pushpalata Vidya Mandir, Tirunelveli-11 during the academic year 2022-2023. Signature of Teacher Submitted for Practical Examination held in COMPUTER SCIE Pushpalata Vidya Mandir Senior Secondary School, Tirunelveli. Internal Examiner External Examiner ACKNOWLEDGEMENT I wish to express my deep gratitude and sincere thanks to Senior Principal Mrs, PUSHPAVENI AYYAPPAN for her encouragement and facilities that she provided for this project work. I sincerely appreciate this magnanimity by taking me into her fold for which I shall remain indebted to her. I extend my hearty thanks to my Computer Science teacher Ms.Annie Sahaya Lidiya who guided me to the successful completion of this project. I take this opportunity to express my deep sense of gratitude for their invaluable guidance, constant encouragement, constructive comments, sympathetic attitude and immense motivation, which has sustained my efforts at all stages of this project work. INDEX TITLE PAGE.NO Description 01 Source Code 04 Output 36 DESCRIPTION PROBLEM DEFINITION: All countries in the world have different currency rates. The most common problem faced by the tourists traveling around the world is, they are not aware of the currency rate of the country they are visiting. They fail to know the required money they need to bring with them in order to spend their vacation. They can’t enjoy their time to the fullest as they lack money. Thus, their plan of enjoying the vacation is unfortunately ruined. OBJECTIVES: So, we’ve developed a solution to convert currency rates from one country to another. Here, we’ve developed a program that accepts user inputs and converts currency rates between two countries. The main aim of our program is to help people to recognize currency rates of different countries. The process of converting is done within the blink of an eye with the help of high-level programming language, Python. METHODOLOGY: INTRODUCTORY MODULE: Prints the program name and the countries available for conversion. TABULAR INFORMATION MODULE: Prints the conversion rate for selected countries’ combinations. USER INPUT MODULE: Gets user’s input whether to convert currency or to know about any currency printed in the first module. When the user wants to convert currency value, then gets the user input consisting of two countries between which the user wants to convert the currency value. Then gets the currency value of the first country. The program then converts the currency rate of first country to the currency rate of second country. Then prints the rate rounded off to one decimal place. Else, when the user wants to know the full form of the currencies printed in the first module, the program simply asks the user to enter the position of the currency. Then the program prints the full form. RETRY MODULE: This module starts running when the conversion process has ended. Here, the user is asked whether they want to convert again. When the user wants to convert again, the program repeats the whole process again. Else, the program is immediately terminated. 2 MODULES: . Introductory Module . Tabular Information Module . User input Module . Currency Rate Data Module . Retry Module TOOLS/PLATFORM USED: We have used python programming language. SOURCE CODE while True: print(‘\t’) print("*' * 75) print() print('=" * 25, ‘Currency Conversion’, '=' * 25) print() print("*' * 75) print() print('Enter all the currencies in short form as given below’) print(' (1) int’, ‘\n', (2) usd’, \n', (3) gbp', "in", '(4) eur’, “\n', "(5) aud’, Nn’, '(6) cad’, "\n', '(7) ars") currencies = (‘inr’, ‘usd’, 'gbp', ‘cur’, ‘aud’, ‘cad’, 'ars') currnames = (‘Indian Rupees’, 'US Dollars’, 'British Pounds’, 'French Euros’, ‘Australian Dollars’, ‘Canadian Dollars’, ‘Argentine Pesos') print(\tS.No, |From_Country Name | To_Country Name | Currency Rate |) print(\t, '' * 73) print(\tl | India ‘America 0.012 USD print(\t 2. | America India 79.67 INR print(\t 3. | India UK 0.018 GBP print(\t4 | UK India 92.41 INR print(\t 5 | India France 0.0124 EUR print(\t 6 | France India 80.48 INR print(\t 7 | India Australia 0.018 AUD print(\t 8 | Australia India 594.43 INR print(\t 9 | India Canada 0.016 CAD print(\t 10 | Canada India 60.08 INR print(\t 11 | India Argentina 1.906 ARS print(\t 12 | Argentina India 0.52 INR print(\t 13 | America UK 0.98 GBP print(\t 14 | UK America 1.16 USD print(\t 15 | America Canada 1.36 CAD print(\t 16 | Canada | America 0.73USD |) print(\t 17 | UK =| — Canada 1.56CAD |) print(\t 18 | Canada| UK 0.63GBP |’) print(\t 19 | America | France 0.98 EUR |’) print(\t 20 | France | America 1o1USD |) print() print(‘DISCLAIMER!!!') print(‘\t’, '!' * 10, 'The converted currency value will be rounded off to one decimal place’, "!' * 10) print(‘\t) print(’ Press (1) for currency conversion’, ‘in’, 'Press (2) for the details of currencies’) print() print(‘\t’) c= int(input(>>>")) ife=1 print() print(‘Enter which currency you want to convert from: from_currency=input() print('Enter which currency you want to convert to: ') to_currency~input() if from_currency and to_currency in currencies: print) print(Starting conversion process...') print() if from_currency == ‘inr' and to_currency —="usd’: print(Indian Rupees to US Dollars conversion’) print(Enter int value: ') inr = float(input()) usd = inr * 0.0125 usd = str(usd) usd = usd.partition(’.’) usd = usd[0] +'.' + usd[2][0] print() print(inr, "Indian Rupees ~' ,usd, 'US Dollars’) elif from_currency =="usd’ and to_currency == ‘inr' print('US Dollars to Indian Rupees’) print(Enter usd value: ") usd = float(input()) inr = usd * 79.67 int = str(int) inr = inr.partition(.’) inr = inr[0] +1! + inr{2][0] print() print(usd, 'US Dollars =" ,inr, ‘Indian Rupees’) elif from_currency == ‘int’ and to_currency print(‘Indian Rupees to British Pounds conversion’) print(‘Enter inr value: ') inr = float(input()) gbp = inr * 0.0108 gbp = str(gbp) gbp = gbp.partition('.’) gbp = gbp[0] +'! + gbp[2][0] print() print(inr, ‘Indian Rupees =" .gbp, 'British Pounds’) elif from_currency —="gbp' and to_currency —"inr’ print(British Pounds to Indian Rupees conversion’) print(‘Enter gbp value: ') gbp = float(input()) int = gbp * 92.41 inr = str(int) inr = inr-partition(.") inr = inr[0] +* + inr(2][0] print() print(gbp, 'British Pounds ~' ,inr, ‘Indian Rupees’) elif from_curren inr’ and to_currene print(‘Indian Rupees to French Euros conversion’) print(Enter inr value: ') inr = float(input()) eur = inr * 0.0124 cur = str(eur) eur = eur.partition('.') uur = eur[0] +'.' + eur[2][0] print() print(inr, Indian Rupees =' ,cur, 'French Euros’) elif from_currency == eur’ and to_currency == ‘inr': print(‘French Euros to Indian Rupees conversion’) print(Enter eur value: ') eur = float(input()) inr = eur * 80.48 inr = str(int) inr = inr.partition(.') inr = inr[0] +‘! + inr{2][0] print() print(eur, "French Euros =" ,inr, "Indian Rupees’) elif from_currency == int’ and to_currency == ‘aud’ print(Indian Rupees to Australian Dollars conversion’) print(Enter int value: ') int = float(input()) aud = inr * 0.018 aud = str(aud) aud = aud.partition(.) aud = aud{0] +" + aud[2][0] print() print(inr, Indian Rupees =" ,aud, ‘Australian Dollars’) elif from_currency == ‘aud! and to_currency == 'inr': print(‘Australian Dollars to Indian Rupees conversion’) print(‘Enter aud value: ') aud = float(input()) inr = aud * 54.43 inr = str(inr) inr = inr-partition(’.) ine = inr{0] +! + inr{2][0] primt() print(aud, ‘Australian Dollars ~' nr, ‘Indian Rupees’) elif from_currency == int’ and to_currency print(‘Indian Rupees to Canadian Dollars conversion’) print(Enter cad value: ") inr = float(input()) cad = int * 0.0166 cad = str(cad) cad = cad partition(.’) cad = cad[0] +'.' + cad[2][0] print() print(inr, Indian Dollars —' ,cad, 'Canadian Dollars') elif from_currency == 'cad' and to_currency print(‘Canadian Dollars to Indian Rupees conversion’) print(Enter cad value: ") cad = float(input() int = cad * 60.08 inr = str(int) inr = inr.partition(.') inr = inr[0] +‘! + inr{2][0] print() print(cad, ‘Canadian Dollars =' ,inr, "Indian Rupees’) elif from_currency ==inr' and to_currency print(‘Indian Rupees to Argentine Pesos conversion’) print(Enter inr value: ') float(input()) inr * 1.906 str(ars) ars.partition(’.') ars = ars[0] +"! + ars[2][0] printQ) print(inr, Indian Rupees =' ,ars, ‘Argentine Pesos’) elif from_curreney —~'ars' and to_currency "in: print('Argentine Pesos to Indian Rupees conversion’) print(Enter ars value: ') ars = float(input()) inr = ars * 0.52 inr = str(inr) inr = inrpartition(') inr = inr{0] + + inr{2][0] print() print(ars, 'Argentine Pesos =" inr, 'Indian Rupees’) elif from_currency — ‘usd’ and to_currency == 'gbp': print('US Dollars to British Pounds conversion’) print('Enter usd value: ') usd = float(input()) gbp = usd*0.86 gbp = str(gbp) gbp = gbp.partition(.’) gbp = gbp[0] +"! + gbp[2][0] print() print(usd, 'US Dollars =',, gbp, ‘British Pounds’) elif from_curreney == 'gbp' and to_curreney == "us print(British Pounds to US Dollars conversion’) print(Enter gbp value: ') gbp =float(input()) usd = gbp*1.16 usd = str(usd) usd = usd partition(.’) usd = usd{0] +'.'+ usd[2][0] print() print(gbp, ‘British Pounds ~' , usd, 'US Dollars’) elif from_currency == ‘usd! and to_currency print('US Dollars to French Euros conversion’) print(Enter usd value: ') usd = float(input()) eur = usd*0.98 eur = str(eur) eur = eur.partition('.’) eur = eur[0] +" + eur[2][0] print() print(usd, 'US Dollars =" , eur, ‘French Euros’) ‘eur’ and to_currency =="usd': print(French Euros to US Dollars conversion’) print(Enter eur value: ') eur = float(input()) usd = eur*1.01 usd = str(usd) usd = usd partition(’.’) usd = usd[0] +"! + usd[2][0] print() print(eur, ‘French Euros =", usd, 'US Dolla elif from_currency == "usd! and to_currency print('US Dollars to Australian Dollars conversion’) print(‘Enter usd value: ") usd = float(input()) aud = usd* 1.46 aud = str(aud) aud = aud.partition('.’) aud = aud[0] +! + aud[2][0] print() print(usd, 'US Dollars =" , aud, ‘Australian dollars’) elif from_currency — ‘aud’ and to_currency—= ‘usd’: print(‘Australian Dollars to US Dollars conversion’) print(‘Enter aud value: ') aud = float(input()) usd = aud*0.68 usd = str(usd) usd = usd.partition('.’) usd = usd[0] +',' + usd[2][0] print() print(aud, ‘Australian Dollars =' , usd, 'US dollars’) elif from_curreney == ‘usd’ and to_currency == ‘cad’: print('US Dollars to Canadian Dollars conversion’) print('Enter usd value: ") usd = float(input()) cad = usd * 1.36 cad = str(cad) cad = cad.partition('.’) cad = cad[0] +'.' + cad{2][0] print() print(usd, 'US Dollars ='_,cad, ‘Canadian Dollars’) elif from_currency == ‘cad’ and to_currency == ‘usd’ print(‘Canadian Dollars to US Dollars conversion’) print(Enter cad value: ') cad = float(input()) usd = cad * 0.73 usd = str(usd) usd = usd.partition(’.’) usd = usd[0] +'.' + usd[2][0] print() print(cad, ‘Canadian Dollars =" ,usd, 'US Dollars’) elif from_currency =="usd' and to_currency == ‘ars! print('US Dollars to Argentine Pesos conversion’) print(Enter usd value: ") usd = float(input()) ars = usd * 157.6 ars = str(ars) ars = ars.partition('.') ars = ars[0] +"! + ars[2][0] print() print(usd, 'US Dollars =" ars, ‘Argentine Pesos’) elif from_currency =="ars' and to_currency print(‘Argentine Pesos to US Dollars conversion’) print('Enter ars value: ') ars = float(input()) usd = ars * 0.0063 usd = str(usd) usd = usd.partition(.’) usd = usd[0] +! + usd[2][0] print() print(ars, ‘Argentine Pesos =' usd, 'US Dollars’) elif from_currency == 'gbp' and to_currency == ‘eur’ print(British Pounds to French Euros conversion’) print('Enter gbp value: ') gbp = float(input()) eur = gbp*1.15 eur = str(eur) eur = cur.partition(’.’) eur = eur[0] +"! + eur{2][0] print() print(gbp, ‘British Pounds ~ , eur, ‘French Euros’) elif from_currency = ‘eur' and to_curreney print(‘French Euros to British Pounds conversion’) print(‘Enter eur value: ") eur = float(input() gbp = eur*0.866 gbp = str(gbp) gbp = gbp.partition('.’) gbp = gbp[0] +'.' + gbp[2][0] print) print(cur, ‘French Euros =", gbp, 'British pounds’) elif from_currency == 'gbp" and to_curreney == ‘aud’: print('British Pounds to Australian Dollars conversion’) print(Enter gbp value: ') gbp = float(input()) aud = gbp * 1.701 aud = str(aud) aud = aud.partition(.’) aud = aud[0] +" + aud[2][0] print() print(gbp, ‘British Pounds =", aud, ‘Australian Dollars’) elif from_currency == ‘aud! and to_currency == 'gbp': print(‘Australian Dollars to British Pounds conversion’) print('Enter aud value: ') aud = float(input()) gbp = aud * 0.58 gbp = str(gbp) gbp = gbp.partition(’.’) gbp = gbp[0] +'' + gbp[2][0] print() print(aud, ‘Australian Dollars =", gbp, 'British Pounds’) elif from_currency == 'gbp' and to_currency = ‘cad’: print(British Pounds to Canadian Dollars conversion’) print(Enter gbp value: ') gbp = float(input()) cad = gbp * 1.56 cad = str(cad) cad = cad partition(.’) cad = cad[0] +'.' + cad[2][0] primt() print(gbp, ‘British Pounds ~! , cad, ‘Canadian Dollars’) elif from_currency == 'cad' and to_currency =='gbp': print((Canadian Dollars to British Pounds conversion’) print('Enter cad value: ") cad = float(input()) gbp = cad * 0.63 gbp = str(gbp) gbp = gbp.partition(’.’) gbp = gbp[0] +" + gbp[2][0] print() print(cad, ‘Canadian Dollars =", gbp, 'British Pounds’) elif from_currency == 'gbp' and to_currency = "ars! print(British Pounds to Argentine Pesos conversion’) print('Enter gbp value: ') gbp = float(input()) ars = gop * 180.7 ars = str(ars) ars = ars.partition('.') ars = ars[0] 41+ ars[2][0] print() print(gbp, ‘British Pounds =" , ars, ‘Argentine Pesos’) elif from_currency ='ars' and to_currency print(‘Argentine Pesos to British Pounds conversion’) print(‘Enter ars value: ') ars = float(input()) gbp ~ ars * 0.0055 gbp = str(gbp) gbp = gbp.partition('.’) gbp = gbp[0] +". + gbp[2][0] printQ) print(ars, 'Argentine Pesos =", gbp, ‘British Pounds’) elif from_currency —~ ‘eur’ and to_currency == ‘aud’: print(‘French Euros to Australian Dollars conversion’) print(Enter eur value: ') eur = float(input()) aud = eur * 1.54 aud = str(aud) aud = aud.partition('’) aud = aud[0] +'.' + aud{2][0] print() print(eur, "French Euros =',, aud, ‘Australian Dollars’) elif from_curreney ~~ ‘aud’ and to_curreney —= ‘eur’: print(‘Australian Dollars to French Euros conversion’) print(Enter aud value: ') aud = float(input() cur = aud * 0.645 eur = str(eur) eur = eur-partition(’.') eur = eur[0] +'.' + eur{2][0] print() print(aud, ‘Australian Dollars =' , eur, 'French Euros’) elif from_currency 1’ and to_curreney == ‘cad! print(French Euros to Canadian Dollars conversion’) print(Enter eur value: ') cur = float(input()) cad = eur * 1.34 cad = str(cad) cad = cad partition(.’) cad = cad[0] +'.' + cad[2][0] print() print(eur, "French Euros ~',, cad, ‘Canadian Dollars’) elif from_currency == ‘cad’ and to_currency print(‘Canadian Dollars to French Euros conversion’) print(‘Enter cad value: ") cad = float(input()) eur = cad * 0.74 eur = str(eur) eur = eur.partition('.’) eur = eur[0] +" + eur[2][0] print() print(cad, ‘Canadian Dollars =',, eur, 'French Euros’) ‘eur’ and to_currency =='ars': print('French Euros to Argentine Pesos conversion’) print(Enter eur value: ') eur = float(input() ars = eur * 155.6 ars = str(ars) ars = ars.partition(’.') ars = ars[0] +'' + ars[2][0] print() print(cur, ‘French Euros =", ars, ‘Argentine Pesos’) elif from_currency =="ars' and to_currency = print(‘Argentine Pesos to French Euros conversion’) print(‘Enter ars value: ') ars = float(input()) eur = ars * 0.0064 eur = str(eur) eur = eur-partition(.’) eur = eur[0] +".' + eur[2][0] print() print(ars, 'Argentine Pesos =',, eur, ‘French Euros’) elif from_currency —= ‘aud! and to_currency —='cad! print(‘Australian Dollars to Canadian Dollars conversion’) print(‘Enter aud value: ') aud = float(input(Q) cad =aud * 0.87 cad = str(cad) cad = cad.partition('.’) cad = cad[0] +'.' + cad{2)[0] print() print(aud, ‘Australian Dollars =' , cad, ‘Canadian Dollars’) elif from_currency == ‘cad’ and to_currency == ‘aud! print(‘Canadian Dollars to Australian Dollars conversion’) print(‘Enter cad value: ') cad = float(input() aud=cad * 1.14 aud = str(aud) aud = aud.partition(.’) aud = aud[0] +"! + aud[2][0] print() print(cad, ‘Canadian Dollars =' , aud, 'Australian Dollars’) clif from_currency == ‘aud! and to_curreney =="ars' print(‘Australian Dollars to Argentine Pesos conversion’) print(‘Enter aud value: ') aud = float(input()) ars = aud * 101.08 ars = str(ars) ars = ars.partition('.’) ars = ars[0] +1! + ars[2][0] print() print(aud, ‘Australian Dollars ~" , ars, ‘Argentine Pesos’) elif from_currency print('Argentine Pesos to Australian Dollars conversion’) print('Enter ars value: ") ars = float(input()) aud = ars * 0.0098 aud = str(aud) aud = aud.partition(’.’) aud = aud[0] + '.' + aud[2][0] print() print(ars, 'Argentine Pesos =", aud, ‘Australian Dollars’) elif from_currency == 'cad’ and to_currency == print('Canadian Dollars to Argentine Pesos conversion’) print(Enter cad value: ') cad = float(input()) ars = cad * 126.71 ars = str(ars) ars = ars.partition('.') ars = ars[0] +" + ars[2][0] print() print(cad, ‘Canadian Dollars —', ars, ‘Argentine Pesos’) elif from_currency print(‘Argentine Pesos to Canadian Dollars conversion’) print(Enter ars value: ') ars = float(input()) cad = ars * 0.007 cad = str(cad) cad = cad partition('.’) cad = cad[0] +'.' + cad{2][0] print() print(ars, 'Argentine Pesos =", cad, ‘Canadian Dollars’) print('Invalid details entered. Please check and try again’) print('Enter the position of the currency you want to know about from the list printed above: ') currch = int(input()) print(currencies[currch-1], '=', currnames[currch-1]) print(‘Invalid choice’) print(‘Terminating the program...’) break print(Wanna try again? Enter yes or no’) again = input(>>>') if again — 'yes' or again == 'y' continue elif again — ‘no! or again print(‘Thank You for using our Currency Conversion program’) break else: print(Wrong input. Terminating the program’) break OUTPUT CURRENCY INFORMATION FEW GA DE ANDER] on WR america ue one dep uk America 126 USD America Canada 43600) a america 273 usD UK Canada 2.56 CAD Cana UK 0.62 G5P America France 0.92 EUR France Amevien OL USD DISCLAIMER! (nit The converted currency value will be rounded off to one decivnal place! ) For currency conversion ) For eke decals of currencies INDIAN RUPEES TO US DOLLARS CONVERSION Jenner which currency you want bo convert from: lenrer whisk currency gou want to convert te searcing conversion proces. nein Rupees t0 US Dellers conversion Jensen ine vale pasa 3222.0 Indian Rupees = 302.9 US Dollars ware try again? Enter yes or ne so] INDIAN RUPEES TO BRITISH POUNDS CONVERSION yp wens to convert fr ney you want t0 convert abe ‘Starting conversion proces Indian Rupeeé to Bride Pounds conversion Enter in value: naian Rupees = 79.5 British Pounds 1 try again? Enter yes oF no INDIAN RUPEES TO ARGENTINE PESOS CONVERSION Enter which currency you want to convert fron lEnter which currency you want to convert to lors starting conversion process. Indian Rupees ¢0 Argentine Pesos conversion. Enter inv value: ls267 \s267.0 Indian Rupees = 40038.9 Argentine Pesos wanna try again? Enter yes or no INDIAN RUPEES TO FRENCH EUROS CONVERSION Enter which currency you want €© eonvere From Enter which currency you want to convert to: Starting conversion process. Indian Rupees to French Euros conversion Enter int value: 673.0 Indian Rupees = 8.5 French Euros Wanna try again? Enter yes or no INDIAN RUPEES TO CANADIAN DOLLARS CONVERSION Enter which currency you want to convert From Enter which currency you went t0 convert to ead Starting conversion pracese. indian Rupees to Canadian Dollars conversion Jencer ead valve 723 723.0 indian Dollars = 420 Canadian Dollars Wanna try again? Enter yer or no INDIAN RUPEES TO AUSTRALIAN DOLLARS CONVERSION [enter which currency you want to convert from: leneer which currency you want to convert to: laud |seareing conversion process. Indian Rupees to Australian Dollars conversion l7429.0 indian Rupees = 254.8 Australian Dollars lwanna try again? Enter yes or no US DOLLARS TO BRITISH POUNDS CONVERSION fav lenter which currency you want to convert From: [sa lenter which currency you want to convert to: lp [starting conversion proces. lus Dollars ¢o British Pounds conversion leneer usd value lea ls27.0 Us Dollars = 722.2 British Pounds Janna try again? Enter yes or no US Dollars to Australian Dollars conversion enter which currency you wane to convert from ter which currency you want to convert to, tareing conversion process. IS Dollars to Australian Dollars conversion inter usd value 728.0 US Dollars = 9922.8 Australian dollars Wanna try again? Enter yes or no bool US DOLLARS TO CANADIAN DOLLARS CONVERSION inter which currency you want to convert From: sd inter which currency you want to convert to: cad starting conversion process. 15 Dollars to Canadian Dollars conversion Enter usd value 73.0 US Dollars = 9152 Canadian Dollars Janna try again? Enter yes or no BRITISH POUNDS TO AUSTRALIAN DOLLARS CONVERSION wera Enter which currency you want to convert from: abe Enter which currency you want to convert to laud Starting conversion process British Pounds to Australian Dollars conversion Enter ghp value: 10 1000 British Pounds = 27.0 Australian Dollars Wanna try again? Enter yes or no BRITISH POUNDS TO CANADIAN DOLLARS CONVERSION Enter which currency you want ¢0 convert from: bp [Enter which currency you want ¢0 convert to: ead. Starting conversion process. British Pounds to Canadian Dollars conversion Enter gbp value: 10 400 British Pounds = 4.5.6 Canadian Dollars Wanna try again? Enter yes or no AUSTRALIAN DOLLARS TO CANADIAN DOLLARS CONVERSION ot enter which currency you want to convert from: ud Enter which currency you want to convert to: ad tarting conversion process. Australian Dollars to Canadian Dollars conversion enter aud value: s 115.0 Australian Dollars = 13.0 Canadian Dollars Janna try again? Enter yes or no bo> FRENCH EUROS TO ARGENTINE PESOS CONVERSION o> 2 lencer which currency you wane ¢o convert From lenter which currency you want to convert to: Isearting conversion process |-rench Euros to Argentine Pesos conversion leneer eur value: J25:0 French Euros = 5890.0 Argentine Pesos wanna try again? Enter yes or no INVALID ENTRY: p>> 4 lEnter which currency you want to convert from: lab lEnter which currency you want to convert to: be invalid details entered. Please check and try again Wanna try again? Enter yes or no >>> CHOICE 2: o> a lEnter the position of the currency you want to know about from the list printed above line = Indian Rupees Wanna try again? Enter yes or no >> 2 Enter the position ofthe currency you want to know about from the list printed above B Igbp = British Pounds Wanna éry agen? Enter yes or no INVALID CHOICE: for currency conversion Press (2) forthe details of currencies ms Invalid choice “Terminating the prograv. SIGN OUT \68.0 indian Dollars = $.3 Canadian Dollars wanna try again? Enter yes or no b> y CURRENCY CONVERSION lente all the currencies in short form as given below (2) ine (2) usd (2) abp @ eur ‘anadian Dollars to British Pounds conversion Enter cad value 10 Canadian Dollars = 32.4 British Pounds Vanna ty again? Enter ys or no nm [Thank You for using our Currency Conversion program INVALID ENTRY: Starting conversion proces. ‘anadian Dollars to Australian Dollars conversion Enter cad value: 45.0 Canadian Dollars = 52.5 Australian Dollars Janna try again? Enter yes or no D> k Jrong input. Terminating the program

You might also like