0

我必须在 2 维数组上添加 2008 年选举的每个州的选票,但是当我运行代码时,它只对第一行求和,然后继续将自身添加到前面的总和 51 次到右侧,如下所示:

  • 州 奥巴马 麦凯恩 其他 各州总计
  • 阿拉巴马州 813479 1266546 19794 2099819 2426016 72985 等...
  • 阿拉斯加 123594 193841 8762 2099819 2426016 72985 等...

但我只需要每行一次添加每个州的总票数。

public static void main(String[] args) throws IOException  
{  
  // TODO code application logic here
  File election = new File("voting_2008.txt");  
  Scanner sc = new Scanner(election);  

  String[] states = new String[51];  
  int[][]votes = new int[51][4];  
  int[] Totalbystate = new int[votes.length];  

  for (int s=0; s < 51; s++)  
  {  
    states[s] = sc.nextLine();  
  }  

  for(int c=0; c < 3; c++)  
  {  
    for(int s=0; s < 51; s++)  
    {  
      votes[s][c] = sc.nextInt();  
    }  
  }  

  Formatter fmt = new Formatter();  
  fmt.format("%20s%12s%12s%12s%21s", "State", "Obama", "McCain", "Other", "Total by state");  
  System.out.println(fmt);  
  for (int s=0; s < 51; s++)  
  {  
    fmt = new Formatter();  
    fmt.format("%20s", states[s]);  
    System.out.print(fmt);  
    for(int c=0; c < 3; c++)  
    {  
      fmt = new Formatter();  
      fmt.format("%12d", votes[s][c]);  
      System.out.print(fmt);  
    }  
    int sum =0;  
    for(int row=0; row < votes.length; row++)  
    {  
      for (int col=0; col < votes[row].length; col++)  
      {  
        sum = sum + votes[row][col];  
      }  
      fmt = new Formatter();  
      fmt.format("%21d", sum);  
      System.out.print(fmt);  
    }  

    System.out.println();  
  }  
}  
4

1 回答 1

1

但是当我运行代码时,它只对第一行求和,然后将自身添加到前面的总和 51 次到右侧,如下所示:

看看你的代码:

int sum =0;
for(int row=0; row < votes.length; row++)
{   
    for (int col=0; col < votes[row].length; col++)
    {
        sum = sum + votes[row][col];
    }
    fmt = new Formatter();
    fmt.format("%21d", sum);
    System.out.print(fmt);  
}

看看你在哪里设置sum为 0。现在想想你应该在哪里设置为 0...

于 2012-10-09T16:32:59.687 回答