Skip to main content

Posts

Showing posts with the label Java Output Formatting Hackerrank Solution Java

Java Output Formatting Hackerrank Solution Java

 Java Output Formatting Hackerrank Solution Java For Explanation Check Video: Sample Input java 100 cpp 65 python 50 Sample Output ================================ java 100 cpp 065 python 050 ================================ Code: 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( "================================" );     } }