1 条题解

  • 0
    @ 2026-2-5 22:37:15

    #include<bits/stdc++.h>

    using namespace std;

    int main()

    {

    int a,b,z;

    cin >> a >> b;

    z=(a-100)*0.9;

    if(z>b*1.1)

    {

    cout << "fat";

    }

    if(z<b*0.9)

    {

    cout << "thin";

    }

    else cout << "standard";

    return 0;

    }

    • 1

    信息

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