摘要: 例:输入三个整数,输出最大值和最小值。 #include<stdio.h>int main(){ int a,b,c,max,min; printf("input three numbers:"); scanf("%d%d%d",&a,&b,&c); if(a>b) {max=a;min=b;} e 阅读全文
posted @ 2019-01-09 20:51 巫师笔记 阅读(798) 评论(0) 推荐(0) 编辑