Class Demo (Static Int X 5 Public Static Void Main (String Arrg ) (Int X 10 System - Out.println (X) System - Out.println (Demo.x) ) )

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

class Demo

{
static int x=5;
public static void main (string arrg[]);
{
int x=10;
system.out.println(x);
system.out.println(Demo.x);
}
}

You might also like