Вы находитесь на странице: 1из 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);
}
}

Вам также может понравиться