#include<iostream.h> classA { int x,Y; public: A() { X=0; у=0: } A (int a, int b) { x=a; y=b; } ~A() { if(x-y) coutくく"x=y"<<endl; else coutくぐ"x!=y"<<endl; } void Display() cout<<"x="<<x<<‚y="<<y<<endl; } }; void main() Aal,a2(2,3); a1.Display(); a2.Display(); }
时间: 2024-04-02 10:35:40 浏览: 101
#include_iostream.h_
4星 · 用户满意度95%
很抱歉,这段代码无法编译通过。首先,头文件应该是 `iostream` 而不是 `iostream.h`。其次,类名 `A` 前应该有关键字 `class`。另外,在 `A` 的构造函数中,变量名应该与类中的变量名一致,即 `X` 应该改为 `x`,`у` 应该改为 `y`。最后,在 `Display` 函数的定义中,缺少了函数体的大括号。
阅读全文