0
int is primitive data type , I want to know what we call earch word in this program :--
public class Test { public static void main (String [] args) { int x = 5; System.out.println(x); } } What is public ?( In class) What is public class ? What is public ? (In main method) What is static ? What is void ? What is main ? What is String ? What is args ? What is int ? What is x ? (With int) What is System ? What is out ? What is println ? What is (x)? {} -?
1 ответ
+ 5
You can find all your answers here :
https://www.sololearn.com/Course/Java/