摘要: #include <stdio.h>int add(int a,int b){int c; c=a+b; return c;}int minus(int a, int b){int c; c=a-b;return c;}int multip(int a,int b){int c; c=a*b; re 阅读全文
posted @ 2019-06-25 23:41 你家大白 阅读(156) 评论(0) 推荐(0) 编辑