摘要: 1 #include <stdio.h> 2 int main() 3 { 4 int a, b, c, d, t; 5 printf("请输入4个数:"); 6 scanf("%d%d%d%d", &a, &b, &c, &d); 7 if (a>b){ 8 t=a; a=b; b=t; 9 } 阅读全文
posted @ 2019-11-06 21:37 shelphen 阅读(1682) 评论(0) 推荐(0)