fork download
  1. while (j < n) {
  2. k = 2;
  3. while (k < n) {
  4. sum += a[j] * b[j];
  5. k = k * (k^(1/2));
  6. }
  7. j+=j/2;
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
while (j < n) {
^
Main.java:3: error: class, interface, or enum expected
			while (k < n) {
			^
Main.java:5: error: class, interface, or enum expected
				k = k * (k^(1/2));
				^
Main.java:6: error: class, interface, or enum expected
			}
			^
Main.java:8: error: class, interface, or enum expected
}
^
5 errors
stdout
Standard output is empty