程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++ 十進制轉二進制代碼實現(持續整理中)

C++ 十進制轉二進制代碼實現(持續整理中)

編輯:C++入門知識

/******************************
 *  10進制轉換為2進制輸出  *
 ******************************/
#include <iostream>
using namespace std;
void convert(int);
int main(void) {
    int data;
    cout << "請輸入你要轉換的數: ";
    cin >> data;
    convert(data);
    return 0;
}
/**函數*/
void convert(int fdata) {
    int c[12] = {0}, count;
    count = 0;
    for(int i = 0; fdata > 0; i++){
        c[i] = fdata%2;
        fdata = fdata/2;
        count++;
    }
    for(int j = count; j > 0; j--) {
        cout << c[j-1];
    }
    cout << endl;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved