当前位置: 代码迷 >> 综合 >> 两个整数排序【1314】
  详细解决方案

两个整数排序【1314】

热度:43   发布时间:2023-12-06 10:05:07.0

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a,b;
    scanf("%d %d",&a,&b);
    if (a<b)
    printf("%d %d",a,b);
    else
    printf("%d %d",b,a);
    return 0;
}