A. String age;age=18; B. int age=18; C. char age=18; D. age=18;
A. int sex='男'; B. char sex;sex=女; C. char sex="男"; D. char sex;sex=sc.next().charAt(0);
A. int myName="张三"; B. char myName='张三'; C. String myName;myName="张三"; D. float myName=sc.next();
A. float weight=65.6f; B. float weight;weight=48.8f; C. float weight;weight=sc.nextFloat(); D. int weight=sc.nextInt();
A. sc.next() B. sc.nextInt() C. sc.nextfloat() D. sc.next().charAt(0);
A. sc.next() B. sc.nextInt() C. sc.nextFloat() D. sc.next().charAt(0);
A. boolean bl;bl=True; B. boolean bl;bl="false"; C. boolean bl;bl=true; D. boolean bl=FALSE;
A. char ch;ch='A'; B. char ch="A"; C. char ch='男'; D. char ch='9';