Java中的积分转换字符


积分转换字符包括以下内容。

字符描述
%d整数
%o八进制
%x十六进制
%X十六进制

示例

 实时演示

public class Demo {
   public static void main(String[] args) throws Exception {
      System.out.printf( "Integer: %d
", 889 );       System.out.printf( "Negative Integer: %d
", -78 );       System.out.printf( "Octal: %o
", 677 );       System.out.printf( "Hexadecimal: %x
", 56 );       System.out.printf( "Hexadecimal: %X
", 99 );    } }

输出

Integer: 889
Negative Integer: -78
Octal: 1245
Hexadecimal: 38
Hexadecimal: 63

更新于: 2020-06-27

115 浏览

开启你的职业生涯

完成课程获得认证

开始学习
广告