- 龙凤苑中学A班5.15
Apples
- @ 2024-5-15 17:40:51
#include<bits/stdc++.h> using namespace std; int main(){ int c; cin>>c; if(c<2){ cout<<"Today, I ate "<<"1"<<" apple."<<endl; }
else if(c>=2){
cout<<"Today, I ate "<<c<<" apples."<<endl;
}
return 0; }
0 comments
No comments so far...