tommy-gun

Untitled

Apr 8th, 2012
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {
  2. int a[][] = new int[n][n];
  3. String tmp = new String();
  4. for (int i = 0; i < n; i++) {
  5. for (int j = 0; j < n; j++) {
  6.  
  7. String x = JOptionPane.showInputDialog("Zadaj prvok matice A[" + i + "," + j + "]");
  8. a[i][j] = Integer.parseInt(x);
  9. tmp += x + "/n";
  10. //jTextArea1.add(x + "/n");
  11. }
  12. }
  13. jTextArea1.setText(tmp);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment