+ 2
How to display output in a tabular form in java and python?
2 Respuestas
+ 2
you con use formatter in java like:
System.out.format("%s%10d%16s", string1, int1, string2);
this pads int1, and string2 to 10, and 16 characters, respectively.
+ 2
There's no escaping it, buddy. %n_