-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBLIK.cpp
49 lines (39 loc) · 858 Bytes
/
BLIK.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// Created by Wiktor Sroczyński on 17/12/2020.
//
#include "BLIK.h"
#include <time.h>
#include <cstdlib>
#include <iostream>
using namespace std;
BLIK::BLIK()
{
przedstawieniePlatnosci();
}
void BLIK::przedstawieniePlatnosci()
{
cout << "blik" << endl;
}
bool BLIK::zaplac( int cena )
{
char kodBLIK[6];
srand( time( NULL ) );
for(char & i : kodBLIK)
{
i = rand()%10 + '0';
cout << i;
}
cout << endl << "Wpisz wyswietlony powyzej kod BLIK, aby zakonczyc transakcje:" << endl ;
string napis;
std::getline(std::cin, napis );
for( int i = 0; i < napis.length(); i++)
{
if ( kodBLIK[i] != napis[i] )
{
cout << "Transakcja sie nie powiodla" << endl;
return false;
}
}
cout << "Transakcja sie powiodla" << endl;
return true;
}