题意是将十进制数转换成二进制数. 从网上找到的十进制转 k 进制的做法,代码如下: #include <bits/stdc++.h> using namespace std; ','A','B','C','D','E','F'}; void conv(int n,int k)//k 为进制 { int r; r = n%k; n = n/k; if(n) conv(n,k); printf("%c",a[r]); } int main() { int n,k; while(…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 进制转换 { class Program { static void Main(string[] args) { //由于二进制数在C#中无法直接表示,所以所有二进制数都用一个字符串来表示,例如: 二进制: 1010 表示为 字符串:"1010&q…