-7
//check the error
import java.util.Scanner;
class Matoe
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
System.out.println("%n Enter rows and cols of the array:%n");
int r=sc.nextInt();
int c=sc.nextInt();
int a[][]=new int[r][c];
for(int i=1;i<=r;i++)
for(int j=1;j<=c;j++)
a[i][j]=sc.nextInt();
for(int i=1;i<=r;i++)
for(int j=1;j<=c;j++)
{
if((i+j)%2!=0)
int sumeven+=a[i][j];
else
int sumodd+=a[i][j];
}
System.out.println("%n Sum of even element is:"+sumeven);
System.out.println("%n Sum of odd element is:"+sumodd);
}
}
什麼錯誤?我沒有看到任何。 – 2014-02-10 10:26:42
請記住提問? – StuartLC
我們不是編譯器。 – Raptor