C++老大们请来看看程序 我的程序如下。但是不知道错哪了

分三个文档/*************Circle.h*****************/#include<string>usingnamespacestd;classC... 分三个文档

/*************Circle.h*****************/

# include <string>
using namespace std ;
class Circle
{
public :
Circle (int) ;
float getArea () ;
const static string code ;
private :
int r ;

} ;
/******************Circle.cpp*************************/

# include "Circle.h"
# include <string>
using namespace std ;
Circle :: Circle (int rc) : r (rc) {}
float Circle :: getArea ()
{
int s ;
s = 3.14 * r * r ;
return s ;
}
const string Circle :: code = "Circle" ;

/*****************main.cpp*************************/

# include "Circle.h"
# include <string>
using namespace std ;
int main ()
{
Circle c (5) ;
return 0 ;
}
/**********************报错***********************/

Circle.cpp(1) : error C2018: unknown character '0xef'
Circle.cpp(1) : error C2018: unknown character '0xbb'
Circle.cpp(1) : error C2018: unknown character '0xbf'
Circle.cpp(1) : error C2014: preprocessor command must start as first nonwhite s
pace
D:\C++\Microsoft Visual Studio\VC98\Include\istream(547) : warning C4530: C++ ex
ception handler used, but unwind semantics are not enabled. Specify -GX
Circle.cpp(7) : error C2653: 'Circle' : is not a class or namespace name
Circle.cpp(7) : error C2550: 'Circle' : constructor initializer lists are only a
llowed on constructor definitions
Circle.cpp(7) : warning C4508: 'Circle' : function should return a value; 'void'
return type assumed
Circle.cpp(9) : error C2653: 'Circle' : is not a class or namespace name
Circle.cpp(15) : error C2065: 'r' : undeclared identifier
Circle.cpp(21) : error C2653: 'Circle' : is not a class or namespace name
展开
 我来答
baby901104
2012-11-16
知道答主
回答量:15
采纳率:0%
帮助的人:5万
展开全部
没错啊,将程序放到linux系统下:
$g++ main.cpp circle.cpp
直接编译,可以通过并生成可执行文件

你是不是编译的时候没加上circle.cpp
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
peacexf
2012-11-16 · TA获得超过293个赞
知道小有建树答主
回答量:476
采纳率:100%
帮助的人:408万
展开全部
utf-8编码改成asscii。
你还来啊。
要打板子啦
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式