这一个小程序怎么会有错误呢
#include<iostream.h>class Tclass
{ pubic:
int x,y;
void ab()
{ cout<<x<<","<<y;}
};
void main()
{ Tclass test;
test.x=100;test.y=200;
test.ab();
}
这个程序这么简单,怎么运行起来会有错误呢?
#include<iostream>
using namespace std;
class Tclass
{ public:
int x,y;
void ab()
{ cout<<x<<\",\"<<y;};
};
int main()
{ Tclass test;
test.x=100;test.y=200;
test.ab();
return 0;
}