hello everyone.
I tried to find out correct section to ask this question,but i could not find way. could you suggest with answer?
my code:
class a{
public static void main(String args[]){
int i=10;
System.out.println(i);
}
class b{
public void max(){
System.out.println("i");
}
}
}
my q: i want printout of class b. what is wrong?