码迷,mamicode.com
首页 > 其他好文 > 详细

Euphoria与量子波动速读

时间:2019-12-25 01:34:03      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:return   while   clu   cin   ret   ble   code   ++   倒序   

Euphoria与量子波动速读

http://qoj.xust-kcsoft.club/problem/10002

仔细分析

奇数一条路,

偶数一条路,

最后倒序输出

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    string s;
    cin >> n;
    while(n) {
        if(n&1) {
            s += 'A';
            n = (n - 1) >> 1;
        }
        else {
            s += 'B';
            n = (n - 2) >> 1;
        }
    }
    for(int i = s.size() - 1;i >= 0; -- i) cout << s[i];
    return 0;
}

Euphoria与量子波动速读

标签:return   while   clu   cin   ret   ble   code   ++   倒序   

原文地址:https://www.cnblogs.com/lukelmouse/p/12094380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!