fork(8) download
  1. class Ideone{
  2. char r(){return(char)(65+Math.sqrt(Math.random())*26);}
  3. public static void main (String[] args){
  4. Ideone ideone = new Ideone();
  5. int frequencies[] = new int[26];
  6. for(int i=0;i<1000000;i++){
  7. frequencies[ideone.r()-'A']++;
  8. }
  9. for(int i=0;i<26;i++){
  10. String repeat = "";
  11. for(int j=0;j<frequencies[i]/1000;j++) repeat += "*";
  12. System.out.println((char)(i+65)+": "+repeat);
  13. }
  14. }
  15. }
Success #stdin #stdout 0.21s 320576KB
stdin
Standard input is empty
stdout
A: *
B: ****
C: *******
D: **********
E: *************
F: ****************
G: *******************
H: **********************
I: *************************
J: ***************************
K: ******************************
L: **********************************
M: ************************************
N: ***************************************
O: *******************************************
P: *********************************************
Q: ************************************************
R: ***************************************************
S: ******************************************************
T: *********************************************************
U: ************************************************************
V: ***************************************************************
W: ******************************************************************
X: *********************************************************************
Y: ************************************************************************
Z: ***************************************************************************