java.lang.Integer.toHexString()のサンプル
サンプルコード
package test;
public class AndclassDemo {
public static void main(String[] args) {
int cft = 45;
String cft2 = Integer.toHexString(cft);
System.out.println(cft2);
}
}
結果
2d
Coding Changes the World
サンプルコード
package test;
public class AndclassDemo {
public static void main(String[] args) {
int cft = 45;
String cft2 = Integer.toHexString(cft);
System.out.println(cft2);
}
}
結果
2d