XXXX.c === include<stdio.h> struct postion_XY{ // 类型自己定 如果有小数用float或者double int iX; // X int iY; // Y } void main(){ struct postion_XY stP_A;stP_A.iX = XX; // X stP_A.iY = ##; // Y } ...