You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nudt-compiler-cpp/test_const_float.sy

10 lines
148 B

const float PI = 3.14;
const float E = 2.718;
int main() {
float r = 5.0;
float area = PI * r * r;
float sum = PI + E;
return 0;
}