I need your help with this java program (That is what I have so far its not displaying the medal count)
public class Medals{
public static void main(String[] args){
final int COUNTRIES = 7;
final int MEDALS = 3;
String[]country = { "CANADA", "CHINA","GERMANY", "COREA", "JAPAN", "RUSSIA" } ;
int[][]count = {{1,0,1},{1,1,0},{1,1,1,},{1,1,1},{1,0,0},{1,0,0}, {1,0,0}};
System.out.print( "Country Gold Silver Bronze Total" );
for(int i = 0; i < COUNTRIES ; i ++ ){
(System.out.printf("%15s", countries[i]);
int total = 0;
for(int j = 0; j < MEDALS ; j ++){
(System.out.printf("%8d" , counts [i][j]);
= total = total + counts[i][j];}
(System.out.printf("%d/n" , total);
}
}