Format integer value
In this chapter you will learn:
Formatting integer Numbers
To format an integer in decimal format, use %d.
/*/*j av a 2 s .c om*/
*/
import java.util.Formatter;
public class MainClass {
public static void main(String args[]) {
Formatter fmt = new Formatter();
fmt.format("%4d %4d %4d", 1, 2, 3);
System.out.println(fmt);
}
}
The output:
Next chapter...
What you will learn in the next chapter:
Home » Java Tutorial » String