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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情提交记录(0)
  • #include

    #include<iostream> using namespace std; int main(){ int x,y; cin>>x>>y; if(x>y){ cout<<'>'; } if(x==y){ cout<<'='; } if(x<y){ cout<<'<'; }

    userId_undefined

    #include c++ dxe

    0阅读
    0回复
    0点赞
  • 题解来喽

    #include <iostream> using namespace std; int main(){ int x,y; cin>>x; cin>>y; if(x>y){ cout<<">"; } if(x==y){ cout<<"="; } if(x<y){ cout<<"<"; } return 0; }

    userId_undefined

    ༺ཌༀ薛博文ༀད༻

    倔强青铜出道萌新快乐小狗格式·格式排版员字符串·魔法使模拟·模拟练习生
    0阅读
    0回复
    0点赞
  • 题解,求指教!!

    #include<iostream> using namespace std; int a,b; int main(){ cin>>a>>b; if(a>b)cout<<">"; if(a==b)cout<<"="; if(a<b)cout<<"<"; return 0; }

    userId_undefined

    codingman0015

    0阅读
    0回复
    0点赞

共63条

  • 1
  • 2
  • 3
  • 4
20条/页
跳至页
暂无数据

提交答案之后,这里将显示提交结果~

首页