题解
2023-11-30 19:35:10
发布于:浙江
58阅读
0回复
0点赞
众所周知现在公交车没有自动驾驶的
所以应该把n+2,因为我也算,驾驶员也算。
code:
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
n+=2;
if(n%3!=0)
cout<<"Come again next time.";
else
cout<<"I'm lucky.";
return 0;
}
全部评论 1
<h1 style="display: inline-block;color:rgb(114,51,4);">神</h1>
<h2 style="display: inline-block;color:rgb(191,98,10);">马</h2>
<h3 style="display: inline-block;color:rgb(114,51,4);">东</h3>
<h4 style="display: inline-block;color:rgb(191,98,10);">西</h4>
<h5 style="display: inline-block;color:rgb(114,51,4);">啊</h5>
<h6 style="display: inline-block;color:rgb(191,98,10);">~</h6>2024-07-20 来自 上海
0
有帮助,赞一个