摘要: #include #include #include #include int average(int a,int b,int c) { int av; av=(a+b+c)/3; return av; } int average1(int a,int b,int c,int d,int f) { int av; av=(a+b+c+d+f)/5; return av; }... 阅读全文
posted @ 2019-05-23 15:01 Vaik134 阅读(103) 评论(0) 推荐(0) 编辑