CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*We invite you to a program that will help you to convert dollars into rubles, hryvnia, pounds and euros! Simply enter the required amount of dollars and see how much it will be equal to other currencies!
EXAMPLE: 100
MADE BY FUN HOMSTER/FUN AREA
If you liked this program, do not forget to subscribe to me and put on LIKE!*/
#include <iostream>
#include <string>
using namespace std;
class money
{
private:
double your_doll;
double eur;
double pound;
double RUB;
double UAH;
string info;
public:
void transfer()
{
info = "We invite you to a program that will help you to convert dollars into rubles, hryvnia, pounds and euros! Simply enter the required amount of dollars and see how much it will be equal to other currencies! Enter: ";
cout<<info;
cin>>your_doll;
if (your_doll < 0)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run