You are on page 1of 1

public class OutputVariable {

public static void main( String[] args ){


int value = 10;
char x;
x = 'A';

System.out.println( value );
System.out.println( "The value of x=" + x );
}
}

You might also like