const 常量能否被修改

judge 难度 1

#variable

常量之所以叫常量。

题目

下面代码可以正常编译运行。

const int N = 10;
N = 20;
来小码星球,动手写一遍 →