5.输入三个整数,从小到大排列输出
摘要:/* * 输入三个数,按照从小到大输出 */ #include <stdio.h> int main(int argc, char const *argv[]) { int m; int i,j,k; printf("请输入三个整数:\n"); scanf("%d%d%d",&i,&j,&k); i
阅读全文
posted @ 2021-05-09 19:15
posted @ 2021-05-09 19:15
posted @ 2021-05-08 15:43
posted @ 2021-05-08 14:53