K12教育赛事综合服务平台
专注青少年竞赛题库网站
聚乐之家官方网站
下载聚乐之家官方App
给定结构体定义:
struct Point{int x,y;};
Point p=(1,2);
Point p={1,2};
Point p= new{1,2};
Point p=<1,2>;