1 条题解

  • 0
    @ 2024-9-25 16:03:38
    #include <stdio.h>
    int main()
    {
        int a,b=0;
        scanf("%d %d",&a,&b);
    
        if (a>b)
        printf("%d",a-b);
        else
        printf("%d",b-a);
    
        return 0;
    }
    
    • 1

    信息

    ID
    167
    时间
    1000ms
    内存
    64MiB
    难度
    10
    标签
    递交数
    3
    已通过
    3
    上传者