Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <std_lib_facilities.h>
- int main()
- {
- system("chcp 1250");
- const double jpy = 0.01;
- const double euro = 1.06;
- const double pln = 0.25;
- double money = 1;
- char unit = ' ';
- cout << "Podaj ilość pieniędzy i walutę (j = JPY, e = EURO, zł = PLN):\n";
- cin >> money >> unit;
- if (unit == 'j')
- cout << money << " jenów == " << money*jpy << " dolarów" << endl;
- else if (unit == 'e')
- cout << money << " euro == " << money*euro << " dolarów" << endl;
- else
- cout << money << " pln == " << money*pln << " dolarów" << endl;
- system("PAUSE");
- }
Advertisement
Add Comment
Please, Sign In to add comment