C4:下面是一个类的测试程序,设计出能使用如下测试程序的类: 输出结果: 300-200=100 #include
using namespace std; class Test { 1 //私有数据成员 int X, Y; 2 //公有函数成员 void initx(int X1, int Y1) { X=X1; Y=Y1;} void printx(){ 3 //输出相应结果,输出完后换行 } }; int main() { Test t; t.initx(300,200); t.printx(); return 0; } 输出结果: 300-200=100