Hackerrank – Problem Statement
A description of the problem can be found on Hackerrank.
Solution
I created solution in:
All solutions are also available on my GitHub.
Java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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(); System.out.printf("%-15s%03d\n", s1, x); } System.out.println("================================"); } } |