fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10.  
  11. private double[][] matrix1;
  12. private double[][] matrix3;
  13.  
  14. public Ideone(){
  15. matrix3 = new double[3][3];
  16. matrix1 = new double[][] {new double[]{0.9,0.05,0.05},
  17. new double[]{0.05,0.9,0.05},
  18. new double[]{0.05,0.05,0.9}};
  19. }
  20.  
  21. public static void main (String[] args) throws java.lang.Exception
  22. {
  23. Ideone id = new Ideone();
  24. }
  25. }
Success #stdin #stdout 0.1s 320320KB
stdin
Standard input is empty
stdout
Standard output is empty