数制转换.将一个K进制(k

问题描述:

数制转换.将一个K进制(k

// kTO10.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "math.h" int hex2(long n, int j) // 2进制数转换成十进制数 { int s=0,k=0; while(n>0) { s=s+(int)(n%10...