摘要: #include void add(int a,int b) { int c; c=a+b; printf("%d\n",c); } void minus(int a,int b) { int c; c=a-b; printf("%d\n",c); } void multip(int a,int b) { int c; c=a... 阅读全文
posted @ 2019-06-03 14:41 婷啊婷阿扎 阅读(188) 评论(0) 推荐(0)