- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
", 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 ); } }
Output
Integer: 889 Negative Integer: -78 Octal: 1245 Hexadecimal: 38 Hexadecimal: 63
Advertisements