摘要: #include<iostream> using namespace std; //定义结构体 struct point { int x; int y; void output() { cout << x << endl << y << endl; } }; int main() { point p 阅读全文
posted @ 2021-01-31 21:20 梦之心 阅读(37) 评论(0) 推荐(0) 编辑