#题外话(第24篇题解)
#先看题目
题目链接https://www.luogu.com.cn/problem/P5712 #思路
就有几个注意的点:
1、注意“Today”后面有一个空格,我被坑过
2、如果输入的是0,输出不用加s
3、注意句点,我还被坑过……
#代码(我就不写注释了)
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x;
cin>>x;
if(x<=1)cout<<"Today, I ate "<<x<<" apple.";
else cout<<"Today, I ate "<<x<<" apples.";
return 0;
}