c++的cout输出不了 谁帮我看下 屏幕上只有 press any key to continue

[复制链接]
查看11 | 回复5 | 2010-10-13 11:33:44 | 显示全部楼层 |阅读模式
#include
class point
{
int x,y;
public:
point(int x1,int y1)
{

x=x1;
y=y1;
}
int get_x()
{
return x;
}
int get_y()
{
return y;
}
};
main()
{
point p1(10,10);
cout<<"p1的坐标:"<<p1.get_x()<<p1.get_y()<<endl;

}
可能是我电脑有问题 我在学校机房上的过两天等我换电脑式下就知道了

回复

使用道具 举报

千问 | 2010-10-13 11:33:44 | 显示全部楼层
vs2005编译不过第一 头文件改为(如果是vc6.0就无所谓了)程序最上面加上一行using namespace std;或者在cout前面和endl前面加上std:: main函数加一个返回值类型这样比较标准,不过程序本身应该是没有问题的。。
回复

使用道具 举报

千问 | 2010-10-13 11:33:44 | 显示全部楼层
#include class point{ int x,y; public: point(int x1,int y1) {
x=x1;
y=y1; } int get_x() {
return x; }
int
回复

使用道具 举报

千问 | 2010-10-13 11:33:44 | 显示全部楼层
#include using namespace std;class point{ int x,y;public: point(int x1,int y1) {
x=x1;y=y1; } int get_x() {return x; } int get_y()
回复

使用道具 举报

千问 | 2010-10-13 11:33:44 | 显示全部楼层
你的程序没有问题,我在VC6.0下编译运行出来了结果。。
回复

使用道具 举报

千问 | 2010-10-13 11:33:44 | 显示全部楼层
main函数前加上void
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行