摘要: float average(int a,int b,int c) { float z; z=(a+b+c)/3; return z; } float F(int a,int b,int c,int d,int e) { float z; z=(a+b+c+d+e)/5; return z; } #include int main() { ... 阅读全文
posted @ 2019-06-03 16:22 名字什么的不重要 阅读(113) 评论(0) 推荐(0) 编辑
摘要: int add(int a,int b){ int z; z=a+b; return z;}int minus(int a,int b){ int z; z=a-b; return z;}int multip(int a,int b){ int z; z=a*b; return z;}int quo 阅读全文
posted @ 2019-06-03 15:26 名字什么的不重要 阅读(156) 评论(0) 推荐(0) 编辑