| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 599 人关注过本帖
标题:关于c++问题,出现了m2.cpp(41) : fatal error C1004: unexpected end of f ...
取消只看楼主 加入收藏
c718382171
Rank: 2
等 级:论坛游民
帖 子:32
专家分:41
注 册:2013-12-21
结帖率:83.33%
收藏
已结贴  问题点数:10 回复次数:0 
关于c++问题,出现了m2.cpp(41) : fatal error C1004: unexpected end of file found 执行 cl.ex
#include <iostream>
using namespace std;
class Point
{
public:
  Point(int x = 0, int y = 0):x_(x), y_(y){}
  int X()const{return x_;}
  int Y()const{return y_;}
  void X(int x){ x_ = x; }
  void Y(int y){ y_ = y; }
private:
  int x_;
  int y_;
};

class Rectangle
{
public:
  Rectangle(Point l, Point r) :ld(l), ru(r){}
  int Area(){ return (ru.x - ld.x) * (ru.y - ld.y);
  void Coord(){
    cout<<"Point 1: "<<ld.x<<","<<ld.y<<endl;
    cout<<"Point 2: "<<ru.x<<","<<rd.y<<endl;
    cout<<"Point 3: "<<ru.x<<","<<ru.y<<endl;
    cout<<"Point 1: "<<ld.x<<","<<ru.y<<endl;
  
  }
private:
  Point ld; //左下角的点
  Point ru; //右上角的点
};

int main()
{
  Point one(1, 1), two(10,10);
  Rectangle r(one, two);
  cout<<r.Area()<<endl;
  r.Coord();
  return 0;
}
搜索更多相关主题的帖子: unexpected private include public return 
2014-03-15 20:34
快速回复:关于c++问题,出现了m2.cpp(41) : fatal error C1004: unexpected end ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.013802 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved