java - How to display 10000 digits in Eclipse console? -


   stringbuilder sb = new stringbuilder();      for(int =0; i<8000; i++){         sb.append("5");     }       biginteger bi = new biginteger(sb.tostring());     system.out.println(bi); 

i'm unable display such huge number on console(using eclipse). also, getting timeout huge numbers. kindly in displaying huge numbers on console.

in preferences of eclipse, go

window > preferences > run/debug > console  

uncheck option

 "limit console output" 

that allows print unlimited lines. if want limit lines ...use option

"console buffer size" 

enter image description here


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -