acgo题库
  • 首页
  • 题库
  • 学习
  • 天梯
  • 备赛

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
  • 竞赛
  • 讨论
  • 团队
登录
注册
题目详情提交记录(0)
  • 输出也能得五个AC

    #include<bits/stdc++.h> using namespace std; int main(){ cout<<"No"; return 0; }

    userId_undefined

    乐乐(有必回关)(有好必赞)

    小有名气空间掌握者9月全勤卷王循环·循环打卡人
    5阅读
    0回复
    0点赞
  • 完成回文数判定函数(ac)

    #include<bits/stdc++.h> using namespace std; const int s=1e8+10; void f(int z){ int t=0,x=z; while(x>0){ t=t*10+x%10; x/=10; }if(t==z){ cout<<"Yes"; }else{ cout<<"No"; } } int main(){ int n; cin>>n; f(n); return 0; }

    userId_undefined

    乐乐(有必回关)(有好必赞)

    小有名气空间掌握者9月全勤卷王循环·循环打卡人
    3阅读
    0回复
    0点赞
暂无数据

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

首页