///
Considere o código a seguir, escrito na linguagem de programação JAVA.
public class Testing {
private static int i = 0;
public static void go(){
System.out.print(i++);
}
public static void main(String args[]){
new Testing().go();
new Testing().go();
new Testing().go();
new Testing().go();
new Testing().go2();
}
public void go2(){
new TestingIntern().run();
}
public class TestingIntern {
public void run(){
System.out.print(i++);
}
}
}Após a sua execução, o resultado apresentado será: