-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dane.cpp
90 lines (74 loc) · 2.47 KB
/
Dane.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <iostream>
#include <cstdlib>
#include <string>
#include "Dane.h"
using namespace std;
int data_input::data()
{
//Funkcja s³u¿¹ca do obliczania liczb typu int.
int x = 0, k = 0;
string text = "ddddd", help;
getline(cin, help);
text.insert(0, help);
for (int i = 0; i < (text.size() - 5); i++)
{
if ((47 > text[i]) || (text[i] > 58))
{
k += (int)text[i];
x = k + x;
}
else if (((47 < text[i + 5]) && (text[i + 5] < 58)) && ((47 < text[i + 4]) && (text[i + 4] < 58)) && ((47 < text[i + 3]) && (text[i + 3] < 58)) && ((47 < text[i + 2]) && (text[i + 2] < 58)) && ((47 < text[i + 1]) && (text[i + 1] < 58)) && ((47 < text[i]) && (text[i] < 58)))
{
x = (text[i] - 48) * 100000 + (text[i + 1] - 48) * 10000 + (text[i + 2] - 48) * 1000 + (text[i + 3] - 48) * 100 + (text[i + 4] - 48) * 10 + (text[i + 5] - 48) + x;
i += 5;
}
else if (((47 < text[i + 4]) && (text[i + 4] < 58)) && ((47 < text[i + 3]) && (text[i + 3] < 58)) && ((47 < text[i + 2]) && (text[i + 2] < 58)) && ((47 < text[i + 1]) && (text[i + 1] < 58)) && ((47 < text[i]) && (text[i] < 58)))
{
x = (text[i] - 48) * 10000 + (text[i + 1] - 48) * 1000 + (text[i + 2] - 48) * 100 + (text[i + 3] - 48) * 10 + (text[i + 4] - 48) + x;
i += 4;
}
else if (((47 < text[i + 3]) && (text[i + 3] < 58)) && ((47 < text[i + 2]) && (text[i + 2] < 58)) && ((47 < text[i + 1]) && (text[i + 1] < 58)) && ((47 < text[i]) && (text[i] < 58)))
{
x = (text[i] - 48) * 1000 + (text[i + 1] - 48) * 100 + (text[i + 2] - 48) * 10 + (text[i + 3] - 48) + x;
i += 3;
}
else if (((47 < text[i + 2]) && (text[i + 2] < 58)) && ((47 < text[i + 1]) && (text[i + 1] < 58)) && ((47 < text[i]) && (text[i] < 58)))
{
x = (text[i] - 48) * 100 + (text[i + 1] - 48) * 10 + (text[i + 2] - 48) + x;
i += 2;
}
else if (((47 < text[i + 1]) && (text[i + 1] < 58)) && ((47 < text[i]) && (text[i] < 58)))
{
x = (text[i] - 48) * 10 + (text[i + 1] - 48) + x;
i++;
}
else if ((47 < text[i]) && (text[i] < 58))
{
x = (text[i] - 48) + x;
}
}
while (x < 0)
{
cout << "Podano niepoprawn¹ wartoœæ, wprowadŸ ponownie. ";
x = data();
}
return x;
}
float data_input::data_float()
{
float x = 0;
cin >> x;
while (x < 0)
{
cout << "Podales nieprawidlowa liczbe, podaj j¹ jeszcze raz. ";
cin >> x;
}
cin.ignore();
return x;
}
string data_input::data_string()
{
string text;
getline(cin, text);
return text;
}