c3leesan 4 c3libo 3.25 c4baohon 3 c4cojoca 2.5 c4foongj 2 c4hossai 2 c4kassam 3.25 c4ramdas 3 c4solisj N/A c4tarvyd 3.5 c4villen N/A c4xiabin N/A c4yunjef 3.75 c5alleyn 3.5 c5bollig 3 c5charle 4.25 c5chinca 3 c5elshah 3 c5fichir 2.5 c5kaliaz 3 c5liming N/A c5livirg 2 c5maelai 2.75 c5mathur N/A c5matthe 3.5 c5menonn 1 c5mirsye 4 c5qiyu 3.75 c5ruttan 3.75 c5senjon N/A c5shkurt 1.75 c5sidhut 3.5 c5vandes 1 c5wisman 4 c6banerj N/A c6botchk 4 c6dhaliw 4.25 c6gaoche 3 c6linyen 4 c6ogweng N/A c6pereir 4.25 c6yangli N/A g2chun 3.75 g2dexter N/A g2giriav 4 g2imanf 4 g2scan 3.75 g5canuck 3.5 g5fungwa 3.75 g5kimbeo 3 ==================== each point 0.25 Additional comments: 1) Keep the indentation space consistant. 2) Each line of code in the same scope should have the same indentation 3) Comments should have the same indentation with the code 4) Author information is missing 5) Pay attention to the indentation of "throw" if it is put into a seperate line. 6) In general, the left parentheses starting a new scope (e.g. for or while loop )should be in the same line as the condition code. for () { } instead of for () { } 7) If the condition of for statement is too long, break it to several lines. 8) If-Else statement is if () { }else{ } if () { } else{ } instead of: if () { } else { } 9) In general, put the comment on top of the line of the code 10) Don't use duplicated comments 11) Don't use Tab as a whitespace, e.g. i = 0. 12) Don't break an instance and its method call into seperate lines. e.g. next = reader .readLine(); 13) Don't start indenting on the first line of the code. 14) Don't put two assigment statements in the same line. 15) Variable x is never used. 16) Must have at least one statement in a scope. 17) Keep the format of 'if-else' construct consistant. e.g. Line xx and Line yy.