Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Integral conversion characters in Java
Intergral conversion characters include the following.
| Character | Description |
|---|---|
| %d | Integer |
| %o | Octal |
| %x | Hexadecimal |
| %X | Hexadecimal |
Example
public class Demo {
public static void main(String[] args) throws Exception {
System.out.printf( "Integer: %d\n", 889 );
System.out.printf( "Negative Integer: %d\n", -78 );
System.out.printf( "Octal: %o\n", 677 );
System.out.printf( "Hexadecimal: %x\n", 56 );
System.out.printf( "Hexadecimal: %X\n", 99 );
}
}
Output
Integer: 889 Negative Integer: -78 Octal: 1245 Hexadecimal: 38 Hexadecimal: 63
Advertisements
