0
What is the output?
Class jen { Int a=10; System.out.println(a); }
1 ответ
0
//you forgot some keywords,
class MyClass {
public static void main(String[ ] args) {
int a=10;
System.out.println(a);
}
}
https://www.sololearn.com/learn/Java/2137/