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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(0)讨论(0)提交记录(0)
  • 直接秒了

    userId_undefined

    胡天维

    倔强青铜
    0阅读
    0回复
    0点赞
  • 想簡單了...

    #include <iostream> using namespace std; int main(){ int n;cin>>n; if(n>0){ cout<<"positive"; } else if(n==0){ cout<<"zero"; } else{ cout<<"negative"; } return 0; }

    userId_undefined

    Null

    倔强青铜
    0阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    复仇者_无奈

    倔强青铜
    0阅读
    0回复
    0点赞
  • ACGO

    #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n>0){ cout<<"positive"; }else if(n<0){ cout<<"negative"; }else{ cout<<"zero"; } return 0; }

    userId_undefined

    倒车请故意

    倔强青铜
    0阅读
    0回复
    0点赞
  • 标准题解

    userId_undefined

    复仇者_零

    尊贵铂金
    0阅读
    0回复
    0点赞
  • printF

    userId_undefined

    礼堂钉针

    倔强青铜
    0阅读
    0回复
    0点赞
  • 小题解

    userId_undefined

    逍遥骇好=&

    倔强青铜
    0阅读
    0回复
    0点赞
  • 题解

    #include<bits/stdc++.h> using namespace std; int main(){ int N; cin >> N; if(N > 0){ cout << "positive"; }else if(N == 0){ cout << "zero"; }else{ cout << "negative"; } return 0; } 记得点赞

    userId_undefined

    醉词意

    倔强青铜
    0阅读
    0回复
    0点赞
  • AC

    userId_undefined

    suzifeng

    倔强青铜
    0阅读
    0回复
    0点赞

共69条

  • 1
  • 2
  • 3
  • 4
20条/页
跳至页
首页