#CH015. 变量与常量
变量与常量
- 下列变量名中,正确的有哪些?(多选题) {{ multiselect(1) }}
- a
- _a
- 7w
- sum
- my_name
- g0..12
- to2str
- -boot
- 下列定义常量的方法中,正确的有哪些?(多选题) {{ multiselect(2) }}
- int const N = 2e9;
- const int tmp = 8;
- int const int t;
- double const sum = 3.14;
- const char const ch = 'A';
- const long long cnt = 510;