摘要: #include<stdio.h> int average(int x,int y,int z) { int s; s=(x+y+z)/3; return s; } int main() { int average(int x,int y,int z); int a[5][3],i,j,s,s1; 阅读全文
posted @ 2019-06-03 16:08 GUAISS 阅读(138) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<math.h> int add(int x,int y) { int s; s=x+y; return(s);} int minus(int x,int y) { int s; s=x-y; return(s);} int multip(int 阅读全文
posted @ 2019-06-03 16:07 GUAISS 阅读(209) 评论(0) 推荐(0)