摘要: #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; for(i 阅读全文
posted @ 2019-06-03 15:44 夏可 阅读(131) 评论(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 x,int 阅读全文
posted @ 2019-06-03 15:05 夏可 阅读(202) 评论(0) 推荐(0)