public static void main(String[]args){
  byte a =120;short b=250;int c=2200;long d=5000;char e;float f;
  double g=123456789.123456789;
  b=a;c=(int)d;f=(float)g;e=(char)b;
定义完上述变量的类型后 
想要输出变量值 
System.out.println()括号中的部分怎么写  ,一个句子