C語言基礎:將整數格式化成其它進制輸出的代碼

如下的資料是關於C語言基礎:將整數格式化成其它進制輸出的代碼。

#include <stdio.h>
int main ()
 {
   int value = 255;

   printf("The decimal value %d in octal is %on",
        value, value);

   printf("The decimal value %d in hexadecimal is %xn", 
        value, value);

   printf("The decimal value %d in hexadecimal is %Xn", 
        value, value);

    return 1;
 }

gcc編譯運行結果

The decimal value 255 in octal is 377
The decimal value 255 in hexadecimal is ff
The decimal value 255 in hexadecimal is FF
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章