#include <iostream.h> class point { public: int x ; int y ; point(int a = 10, int b = 10) { x = a; y = b; } void output() { cout <<x <<endl ; } }; void main() { point pt; //pt.input(10,10); pt.output(); } 我不知道appcore.cpp中说的什么实验一下