hacker rank java 5th solution

5.Java output formatting



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 myString=sc.next();
int x=sc.nextInt();
System.out.printf("%-15s%03d%n",myString, x);
}
System.out.println("================================");

}
}

Compiler Message
Success
Input (stdin)Download
java 100
cpp 65
python 50
Expected OutputDownload
================================
java           100 
cpp            065 
python         050 
================================

Comments

Popular posts from this blog

Amazon Web Services

Google Code-In mentorship experience :)

Hacker Rank all java and python problem solutions