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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    #include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; for(int i=n;i<=m;i++){ if(i%2==1){ cout<<i<<endl; } } return 0; }

    userId_undefined

    怪盗基德K

    分支·分支解题者循环·循环打卡人倔强青铜
    0阅读
    0回复
    0点赞
  • tijie

    #include<bits/stdc++.h> using namespace std; bool jishu(int x){ if(x%2!=0){ return true; }else{ return false; } } int main(){ int n,m;cin>>n>>m; for(int i=n;i<=m;i++){ if(jishu(i)==true){ cout<<i<<"\n"; } } return 0; }

    userId_undefined

    Null

    时间刺客模拟·模拟练习生字符串·魔法使出道萌新倔强青铜分支·分支解题者
    0阅读
    0回复
    0点赞
  • 包ac的

    #include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; for(int i=n;i<=m;i++){ if(i%2==1){ cout<<i<<endl; } } return 0; }

    userId_undefined

    91VIP

    0阅读
    0回复
    0点赞
  • tj

    userId_undefined

    有事找大号

    0阅读
    0回复
    0点赞
  • easy

    #include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; for(int i=n;i<=m;i++){ if(i%2!=0) cout<<i<<endl; } return 0; }

    userId_undefined

    ~Lyney~

    0阅读
    0回复
    0点赞

共25条

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

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

首页