摘要: #include<stdio.h> void add(int a,int c) { printf("和为%d",a+c); } void dec(int a,int c) { printf("减为%d",a-c); } void rid(int a,int c) { printf("乘为%d",a* 阅读全文
posted @ 2020-05-15 17:35 蓝风c 阅读(135) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void max(int a,int b, int c) { int t; if (a>b) t=a; else t=b; if (t < c) t=c; printf("三个数的最大值为%d:",t); } int main() { int a,b,c; pri 阅读全文
posted @ 2020-05-15 11:39 蓝风c 阅读(3230) 评论(0) 推荐(0) 编辑