1 条题解

  • 0
    @ 2023-10-22 12:27:42
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int b;
        cin>>b;
        if (b <= 1)
        {
            cout<<"Today, I ate "<<b<<" apple.";
        }
        else
        {
            cout<<"Today, I ate "<<b<<" apples.";
        }
        return 0;
    }
    
    • 1

    信息

    ID
    4634
    时间
    1000ms
    内存
    125MiB
    难度
    1
    标签
    (无)
    递交数
    21
    已通过
    15
    上传者