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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    #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级遗址)

    77阅读
    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级
    23阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    zsy

    出道萌新7月全勤卷王时间刺客时空双修者题解仙人秩序白银
    4阅读
    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

    霄

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

    userId_undefined

    Macw08

    出道萌新7月全勤卷王时间刺客空间掌握者倔强青铜格式·格式排版员
    2阅读
    0回复
    0点赞
首页