acgo题库
  • 首页
  • 题库
  • 题单
  • 竞赛
  • 讨论
  • 排行
  • 团队
  • 备赛专区

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(6)讨论(3)提交记录(590)
  • 题解:正确的输出

    #include<iostream> using namespace std; int main(){ int n; cin>>n; n+=2; if(n%3) cout<<"Come again next time."; else cout<<"I'm lucky."; return 0; }

    userId_undefined

    刁文杰

    90阅读
    1回复
    4点赞
  • 题解

    众所周知现在公交车没有自动驾驶的 所以应该把n+2,因为我也算,驾驶员也算。 code:

    userId_undefined

    一只姜(AAAAAA级遗址)

    75阅读
    2回复
    2点赞
  • 众所周知,驾驶员不是人,对吧

    #include<iostream> using namespace std; int main(){ int n; cin >> n; if (n%3==1) cout << "I'm lucky." << endl; else cout << "Come again next time." << endl; return 0; }

    userId_undefined

    沈思邈

    题解仙人荣耀黄金时空双修者CSP-J一等奖GESP8级
    22阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    zsy

    题解仙人出道萌新时间刺客空间掌握者时空双修者秩序白银
    3阅读
    0回复
    1点赞
  • 题目有时不可复制

    #include<iostream> using namespace std; int main(){ int a; cin>>a; a+=2; if(a%3!=0){ cout<<"Come again next time."; }else{ cout<<"I'm lucky."; } return 0; }

    userId_undefined

    霄

    荣耀黄金时空双修者
    12阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    macw08

    时间刺客空间掌握者出道萌新I/O·IO入门者格式·格式排版员倔强青铜
    2阅读
    0回复
    0点赞
首页