Hi
Any one pls tell me , how can i align print statements
I tried many ways , but the output doesnot come properly.
I am using eclipse
System.out.println("Number of records read from aaa "+CountQueryA);
System.out.println("Number of records read from bbb "+CountQueryB);
System.out.println("Number of records read from ccc "+CountQueryC);
my output comes like this
Number of records read from aaa 123
Number of records read from bbb 456
Number of records read from ccc 345
i want my output to be aligned , with all numbers one under the other , but its not happening
anyone help me ..