1 条题解

  • 1
    @ 2023-4-6 22:11:39
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        int x,y;
        cin>>x>>y;
        if (x+y<10)
            cout<<"water";
        else
            if (x>y)
                cout<<"tree";
            else
                cout<<"tea";
        return 0;
    }
    • 1

    信息

    ID
    669
    时间
    1000ms
    内存
    16MiB
    难度
    1
    标签
    递交数
    72
    已通过
    55
    上传者