C++用短除法把十进制转换为二进制输出


#include <iostream>
#include <Windows.h>
#include <string>
using namespace std;
int main() {
    int n;
    int ret[32];
    int i = 0;

    cout << "请输入一个正整数:";
    cin >> n;

    if (n < 0) {
        cout << "需要输入一个正整数!" << endl;
        system("pause");
        return 1;
    }

    while (n != 0) {
        ret[i] = n % 2;
        n = n / 2;
        i++;
    }

    for (i--; i >= 0; i--) {
        cout << ret[i] ;
    }
    cout << endl;
    system("pause");
    return 0;
}

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279622.html

(0)
上一篇 2022年8月8日
下一篇 2022年8月8日

相关推荐

发表回复

登录后才能评论