I have a program in c++, that loops over a lot of calculations. For each loop I use printf to print out how far the calculations are in percent, like
"Calculations are 64.7 % done."
Each print out overwrites the previous, thus using only one line in the console instead of printing several lines under each other.
Is that possible in java? The printf in java prints out a new line every time.
Or do you guys have some other idea as to how I can easily see the progress.?