帮我看下这个C++程序错在哪里。我是初学者,给点说明哦

2025-01-02 00:56:17
推荐回答(4个)
回答1:

const float R =10 最后少了个分号~~~ O(∩_∩)O

回答2:

e:\c++练习\wg2.cpp(5) : error C2144: syntax error : missing ';' before type 'int'
第五行const float R =10 后少了个分号啊。

回答3:

#define PI 3.14159后面不能有分号,如果有了分号编译器会认为PI还包括了分号,就有可能得到错误答案。const float R=10就应该在后面加分号了

回答4:

const float R =10少;