#3549拿错了?

Kinghero King of the summit 2023-07-07 19:55:39 0

上代码

#include <bits/stdc++.h>
using namespace std;
int main() {
    int year;
    cin >> year;
    if(year >= 2)
    {
    	cout<<"Today, I ate "<<year<<" apples.";
	}
	else
	{
		cout<<"Today, I ate "<<year<<" apple.";
	}
    return 0;
}
{{ vote && vote.total.up }}