/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ // program name: convert.c // // programmer: John Healy // // date: Wed Feb 04 2004 // // version: 1.0 // // description: display conversion factors for curency onto the screen. // // Copyright (c) 2004 __Little John's Software__. All rights reserved. // // Conversion numbers from www.xe.com on 2004.01.30 23:26:14 GMT // /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ #include void main (void) { double PHPtoUSD=0.0178635, ZMKtoUSD=0.000210526, AUDtoUSD=0.762615, RURtoUSD=0.0350508, GBPtoUSD=1.82410; printf("\n \t Currency Conversion at 2004.01.30 23:26:14 GMT \n"); printf("\n The Currency conversion for United Kindon Pounds to USD is %2.5f \n", GBPtoUSD); printf("\n The Currency conversion for Russia Rubles to USD is %2.7f \n", RURtoUSD); printf("\n The Currency conversion for Australia Dollard to USD is %2.6f \n", AUDtoUSD); printf("\n The Currency conversion for Zambia Kwacha to USD is %2.9f \n", ZMKtoUSD); printf("\n The Currency conversion for Phillipines Pesos to USD is %2.7f \n", PHPtoUSD); getchar(); }