其他分享
首页 > 其他分享> > 实现进制转化伪代码

实现进制转化伪代码

作者:互联网

实现进制转化伪代码

伪代码

Write "Enter the new base"
Read newBase
Write "Enter the number to be converted"
Read decimalNumber
Set quotient to 1
WHILE (quotient is not zero)
Set quotient to decimalNumber DIV newBase
Set remainder to decimalNumber REM newBase
Make the remainder the next digit to the left in the answer
Set decimalNumber to quotient
Write "The answer is "
Write answer

用Python实现进制转化




标签:Write,Set,进制,代码,转化,newBase,answer,quotient,decimalNumber
来源: https://www.cnblogs.com/shengcongnianle/p/15519449.html