This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
BMTP/lab09/prj/ModulesMykhailenko.h
2023-02-26 14:34:09 +02:00

26 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