"Bash 10진수-8진수 변환"의 두 판 사이의 차이

(새 문서: ==개요== ;Bash 10진수-8진수 변환 <syntaxhighlight lang='bash' run> printf "%o" $((99)) # 143 </syntaxhighlight> ==같이 보기== * Bash 8진수-10진수 변환 * 함...)
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;Bash 10진수-8진수 변환
;Bash 10진수-8진수 변환
 
* <math>99_{(8)} = 143_{(10)}</math>
<syntaxhighlight lang='bash' run>
<syntaxhighlight lang='bash' run>
printf "%o" $((99)) # 143
printf "%o" $((99)) # 143

2023년 12월 27일 (수) 18:59 판

1 개요

Bash 10진수-8진수 변환
  • [math]\displaystyle{ 99_{(8)} = 143_{(10)} }[/math]
printf "%o" $((99)) # 143

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}