17-结构体3

做者:蔡伟code 完成日期:2016.12.20io 1:题目描述:输入一点横纵坐标输出该点到原点得距离class #include <stdio.h> #include <math.h> struct Point { float x; //横坐标 float y; //纵坐标 }; int main() { struct Point p; float dis
相关文章
相关标签/搜索