blob: 918e4261e25814ef838830baa7f0bca152ce8b7c (
plain) (
blame)
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
|
#ifndef HELPER_HPP
#define HELPER_HPP
#include <iostream>
using std::numeric_limits;
using std::streamsize;
constexpr size_t MAX_STREAM_SIZE = numeric_limits<streamsize>::max();
double InputDouble(const char* Prompt);
float InputFloat(const char* Prompt);
int InputSelectionInt(const char* Prompt);
void Prompts(const char* Prompt);
void Prompts(const char* Prompt)
{
std::cout << Prompt;
}
double InputDouble(const char* Prompt)
{
std::cout << Prompt << std::endl;
std::cout.flush();
double Value = 0;
std::cin >> Value;
while (!std::cin)
{
std::cout << Prompt << std::endl;
std::cin.clear();
std::cin.ignore(MAX_STREAM_SIZE, '\n');
std::cin >> Value;
}
return Value;
}
float InputFloat(const char* Prompt)
{
std::cout << Prompt << std::endl;
std::cout.flush();
float Value = 0;
std::cin >> Value;
while (!std::cin)
{
std::cout << Prompt << std::endl;
std::cin.clear();
std::cin.ignore(MAX_STREAM_SIZE, '\n');
std::cin >> Value;
}
return Value;
}
int InputSelectionInt(const char* Prompt)
{
std::cout << Prompt << std::endl;
std::cout.flush();
int Value = 0;
std::cin >> Value;
while (!std::cin)
{
std::cout << Prompt << std::endl;
std::cin.clear();
std::cin.ignore(MAX_STREAM_SIZE, '\n');
std::cin >> Value;
}
return Value;
}
#endif
|