-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathswitch_case_define_variable.cpp
40 lines (35 loc) · 1.06 KB
/
switch_case_define_variable.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
#include <iostream>
#include <iomanip>
#include <limits> //numeric_limits
using namespace std;
enum class TYPE{
INT, FLOAT, DOUBLE
};
//https://stackoverflow.com/questions/92396/why-cant-variables-be-declared-in-a-switch-statement
//https://stackoverflow.com/questions/554063/how-do-i-print-a-double-value-with-full-precision-using-cout
/*
by adding "{}" after "case xxx:",
we can define variables in the case block
*/
int main() {
double d = 3.14159265358979;
TYPE type = TYPE::FLOAT;
switch(type){
case TYPE::INT:{
int val = d;
cout << "convert to int: " << val << endl;
break;
}
case TYPE::FLOAT:{
float val = d;
cout << "convert to double: " << std::setprecision(std::numeric_limits<float>::max_digits10) << val << endl;
break;
}
case TYPE::DOUBLE:{
double val = d;
cout << "convert to double: " << std::setprecision(std::numeric_limits<double>::max_digits10) << val << endl;
break;
}
}
return 0;
}