题解
2024-12-13 21:54:05
发布于:江苏
6阅读
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;
}
这里空空如也
有帮助,赞一个