您的位置:首页 > 其它

HDU2051(数制转换)

2014-12-16 07:38 190 查看
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2051

解题思路:

朴素的把十进制转化为二进制。

完整代码:

#include <functional>
#include <algorithm>
#include <iostream>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <numeric>
#include <cstring>
#include <climits>
#include <cassert>
#include <complex>
#include <cstdio>
#include <string>
#include <vector>
#include <bitset>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <list>
#include <set>
#include <map>
using namespace std;

#pragma comment(linker, "/STACK:102400000,102400000")

typedef long long LL;
typedef double DB;
typedef unsigned uint;
typedef unsigned long long uLL;

/** Constant List .. **/ //{

const int MOD = int(1e9)+7;
const int INF = 0x3f3f3f3f;
const LL INFF = 0x3f3f3f3f3f3f3f3fLL;
const DB EPS = 1e-9;
const DB OO = 1e20;
const DB PI = acos(-1.0); //M_PI;
const int maxn = 100001;
int ans[maxn];

void solve(int n)
{
    memset(ans , 0 , sizeof(ans));
    int cnt = 0;
    while( n != 0)
    {
        int t = n % 2;
        ans[cnt++] = t;
        n /= 2;
    }
    for(int i = cnt - 1 ; i >= 0 ; i --)
        cout << ans[i] ;
    cout <<endl;
}

int main()
{
    #ifdef DoubleQ
    freopen("in.txt","r",stdin);
    #endif
    int n;
    while(cin >> n)
    {
        solve(n);
    }
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: