- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
四年前关闭了。
Improve this question
我想在c++中一个整数在二进制中向上计数,如:1,10,11,100,101,110,111但我希望值以10为基数,如:1,10,11,100,1001等等。基本上是十进制的,但是看起来像基数10。有算法可以做到这一点吗?
- -约瑟夫
1条答案
按热度按时间fiei3ece1#
这是您应该如何继续:
基本上,您将拥有一个数字,并能够从中获得二进制数以及文本表示。
字符串对于算法来说不是必需的,也可以cout一个
std::bitset
。