1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
class ex38 { public static void main(String[] z) { A a ; a = new A() ; System.out.println(a.foo()) ; } } class A { public int foo() { int v ; v = 0 ; while (v < 10) { v = v + 1 ; } return v ; } }