You're welcome of course; does everything run correct now?
kind regards,
Jos
Yeah !
beside i got Exception error ..all things are under control
but i have to solve this problem by myself now .. because i understand what it made the problem difficult to me... and no thing difficult now just i have to review my code little bit
My Best Regards =)
Good luck! Post back if you get stuck.
One thing you can do to make thigs easier is write better error messages. This only takes one line of code:
Code:public static void main(String[] args) {
try {
Scanner sc = new Scanner(new File("newfile"));
// etc
// SUM ROW IN SMALL MATRIX
} catch (Exception e) {
System.out.println(e);
[color=blue]e.printStackTrace();[/color]
}
}
thanks a lot pbrockway2 for your efforts ,
my best regards to you bro.