This question already has an answer here:
- Selecting parameters in String.format() [duplicate] 3 answers
I am trying to format in java using the printf statement like in this webpage: Click Here. But I just can't figure out what the purpose of the $ sign is. Can someone please explain this to me?
Input:
java 100
cpp 65
python 50
Expected Output: ( there should be a space instead of _ )
================================
java___________100
cpp___________065
python_________050
================================
My code:
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(s1 + "%03d", x);
System.out.println();
}
System.out.println("================================");
}
}