The Tools of Programming-Hello World/ Data Types

Subscribers:
1,210
Published on ● Video Link: https://www.youtube.com/watch?v=RH-DMbV9yxE



Duration: 12:47
35 views
2


public class Room
{

public static void main(String[] args)
{
int x =1 ; //...-1,0,1....
int y = 1;

String j = "Hello World";

System.out.println("x = " + x);
System.out.println (x +" "+ y);
System.out.println("j = " + j);

}

}







Tags:
Arma