java print f int code example

Example 1: java printf format string and int

import java.util.Scanner;

public class Solution {

    public static void main(String[] args) {
            Scanner sc=new Scanner(System.in);
            System.out.println("================================");
            for(int i=0;i<3;i++){
                String s1=sc.next();
                int x=sc.nextInt();
                //Complete this line                
                System.out.printf("%-15s%03d%n",s1,x);
            }
            System.out.println("================================");

    }
}

Example 2: print an integer in java

public class HelloWorld {
    public static void main(String[] args) {
        int number = 45;
        System.out.println("You entered: " + number);
        // output => You entered: 45
    }
}

Tags:

C Example