const float R =10 最后少了个分号~~~ O(∩_∩)O
e:\c++练习\wg2.cpp(5) : error C2144: syntax error : missing ';' before type 'int'
第五行const float R =10 后少了个分号啊。
#define PI 3.14159后面不能有分号,如果有了分号编译器会认为PI还包括了分号,就有可能得到错误答案。const float R=10就应该在后面加分号了
const float R =10少;