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/lab10/prj/ModulesMykhailenko.h

35 lines
661 B
C
Raw Normal View History

#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);
bool validateCharacter(wchar_t character);
int t10_1(string inputFile, string outputFile);
int t10_2(string file);
int t10_3(string file, int x, int y, int z, int b);
#endif // MODULESMYKHAILENKO_H_INCLUDED