moved to community

This commit is contained in:
Alexey Kudravtsev
2015-11-16 13:31:16 +03:00
parent 17de17c766
commit 70290391f9
23 changed files with 31185 additions and 2 deletions
@@ -0,0 +1,43 @@
import java.io.*;
class Test {
float y;
void f() {
int x = 11;
System.out.println("aap");
if (Math.random() > 0.5) {
for (int j = 0; j < 10; j++) {
System.out.println(x);
}
}
try {
g(0);
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
try {
g(0);
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
void foo() {
try {
g(0);
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
/**
*
* @param u
*/
private void g(int u) {
int x = 12;
System.out.println("foo");
System.out.println("bar");
System.out.println(x);
}
}