HackerRank icon indicating copy to clipboard operation
HackerRank copied to clipboard

what would happen if I do like this?

Open Chanuga opened this issue 6 years ago • 1 comments

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();
            String formatted = String.format("%03d", x);
            System.out.println(s1 + " " + formatted); 
        }
        System.out.println("================================");

}

}

Chanuga avatar Aug 16 '19 09:08 Chanuga

Please do mention the question you are talking about.

atarax665 avatar Apr 28 '20 15:04 atarax665