12345678910111213141516171819202122232425262728293031 |
- class Test03Var
- {
- public static void main(String[] args)
- {
-
-
-
-
-
-
-
-
- int age = 13;
- System.out.println("年龄是:"+age);
-
- double weight = 75.6;
- System.out.println("体重是:"+weight);
-
- char gender = '女';
- System.out.println("性别是:"+gender);
-
- double ccw = weight;
- System.out.println("cc体重是:"+ccw);
-
- gender = '男';
- System.out.println("性别是:"+gender);
- }
- }
|