27 lines
479 B
C
27 lines
479 B
C
|
#ifndef MODULESMYKHAILENKO_H_INCLUDED
|
||
|
#define MODULESMYKHAILENKO_H_INCLUDED
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
using std::string;
|
||
|
|
||
|
float s_calculation(int x, int y, int z);
|
||
|
|
||
|
typedef struct Deposit {
|
||
|
float totalInterest;
|
||
|
float monthlyInterestPaid;
|
||
|
} Deposit;
|
||
|
|
||
|
typedef struct Size {
|
||
|
int french;
|
||
|
string international;
|
||
|
} Size;
|
||
|
|
||
|
Deposit getPayment(float value, int months);
|
||
|
|
||
|
Size getSize(int slovakSize);
|
||
|
|
||
|
int t9_3(int number);
|
||
|
|
||
|
#endif // MODULESMYKHAILENKO_H_INCLUDED
|