-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlab_array.cpp
More file actions
54 lines (41 loc) · 1.12 KB
/
lab_array.cpp
File metadata and controls
54 lines (41 loc) · 1.12 KB
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
#include <vector>
#include <iostream>
#include <sstream>
#include <string>
#include <stdexcept>
using namespace std;
/* Getting input from the user in C++ is simply a matter
of saying:
int input;
cin >> input;
However, getting C++ to handle invalid input is
surprisingly complex. So here is a input() function
that I have written that does it all for you.
It behaves in a similar way to input() in Python
and will raise a runtime_error exception if the user
trys to enter anything that can't be converted to the
correct type. You don't need to know how this work at
the moment, just type...
input<int>();
... to read in ints or ...
input<float>();
..if you watch to read floats etc. . */
template<typename T>
T input()
{
string buffer;
getline(cin, buffer);
stringstream ss(buffer);
T input;
if( ss >> input && ss.eof() )
return input;
throw runtime_error("Input is of invalid type");
}
int main()
{
vector<int> userinputs;
// COMPLETE ME
int ui = input<int>();
// COMPLETE ME
return 0;
}