Skip to content

Instantly share code, notes, and snippets.

@dan-dm
Created March 22, 2020 21:30
Show Gist options
  • Save dan-dm/18232e89bd01927351f1c6643ad68abd to your computer and use it in GitHub Desktop.
Save dan-dm/18232e89bd01927351f1c6643ad68abd to your computer and use it in GitHub Desktop.
Created with Copy to Gist
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();
if(s1.length() > 10){
s1 = s1.substring(0, 10);
}
System.out.printf("%-15s%03d%n", s1, x);
}
System.out.println("================================");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment