I'm trying to format my output with System.out.printf(); function in java .
the output format is like this :
In each line of output there should be two columns:
The first column contains the String and is left justified using exactly characters.
The second column contains the integer, expressed in exactly digits; if the original input has less than three digits, you must pad your output's leading digits with zeroes.
================================
java 100
cpp 065
python 050
================================