Binary
含有「Binary」共 1 篇內容
全部內容
發佈日期由新至舊
小黑與程式的邂逅
2023/11/08
[swift]二、八、十與十六進位轉換
十進位轉二進位(Decimal to Binary) let dec = 813 let bin = String(dec, radix: 2) print(bin) // "1100101101" 十進位轉八進位(Decimal to Octal) let dec = 813 let o
#
swift
#
八進位
#
二進位
1
留言