题解
2025-05-23 13:02:26
发布于:浙江
1阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int x;
cin>>x;
if(x>1){
cout<<"Today, I ate "<<x<<" apples.";
}
else{
cout<<"Today, I ate "<<x<<" apple.";
}
return 0;
}
这里空空如也
有帮助,赞一个