<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ThinkChat2.0新版上線,更智能更精彩,支持會話、畫圖、視頻、閱讀、搜索等,送10W Token,即刻開啟你的AI之旅 廣告
                # Kotlin 程序:將八進制數轉換為十進制,反之亦然 > 原文: [https://www.programiz.com/kotlin-programming/examples/octal-decimal-convert](https://www.programiz.com/kotlin-programming/examples/octal-decimal-convert) #### 在此程序中,您將學習使用 Kotlin 中的函數將八進制數轉換為十進制數,反之亦然。 ## 示例 1:將十進制轉換為八進制的程序 ```kt fun main(args: Array<String>) { val decimal = 78 val octal = convertDecimalToOctal(decimal) println("$decimal in decimal = $octal in octal") } fun convertDecimalToOctal(decimal: Int): Int { var decimal = decimal var octalNumber = 0 var i = 1 while (decimal != 0) { octalNumber += decimal % 8 * i decimal /= 8 i *= 10 } return octalNumber } ``` 運行該程序時,輸出為: ```kt 78 in decimal = 116 in octal ``` 此轉換發生為: ```kt 8 | 78 8 | 9 -- 6 8 | 1 -- 1 8 | 0 -- 1 (116) ``` * * * ## 示例 2:將八進制轉換為十進制的程序 ```kt fun main(args: Array<String>) { val octal = 116 val decimal = convertOctalToDecimal(octal) println("$octal in octal = $decimal in decimal") } fun convertOctalToDecimal(octal: Int): Int { var octal = octal var decimalNumber = 0 var i = 0 while (octal != 0) { decimalNumber += (octal % 10 * Math.pow(8.0, i.toDouble())).toInt() ++i octal /= 10 } return decimalNumber } ``` 運行該程序時,輸出為: ```kt 116 in octal = 78 in decimal ``` This conversion takes place as: ```kt 1 * 82 + 1 * 81 + 6 * 80 = 78 ``` 以下是等效的 Java 代碼: [Java 程序:將八進制轉換為十進制,反之亦然](/java-programming/examples/octal-decimal-convert "How to convert octal to decimal and vice-versa in Java?")
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看