public class VariableScopeExam{
static int value = 10; // static한 변수
int value2 = 20; // static하지 않은 변수
public static void main(String []args){
System.out.println(value);
System.out.println(value2); // 이 부분에서 오류 발생 !
}
}