05 2017 档案

摘要:#include<stdio.h>#include<stdlib.h>#include<math.h> struct point{ /*点的结构类型名*/ float x; /*横坐标*/ float y; /*纵坐标*/ }; struct point readPoint(); /*函数原型声明* 阅读全文
posted @ 2017-05-28 22:17 HGR 阅读(263) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h>#include<stdlib.h>#include<math.h>#define N 10/*函数原型*/ float *high(float *a);float *low(float *a);float *mid(float *a);/*主函数*/int mai 阅读全文
posted @ 2017-05-26 16:10 HGR 阅读(217) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h>#include<stdlib.h>#define N 6/*各菜单项的执行函数*/void function1(int a);void function2(int b);void function3(int c); int menu(int max,char*me 阅读全文
posted @ 2017-05-26 16:09 HGR 阅读(416) 评论(0) 推荐(0) 编辑