码迷,mamicode.com
首页 > 其他好文 > 详细

声明四个变量,姓名、年龄、性别和身高,打印出来。

时间:2017-06-14 23:26:38      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:sys   ring   rgs   main   style   logs   static   str   bsp   

/**
 * @author 蓝色以太
 * 声明四个变量,姓名、年龄、性别和身高,打印出来。
 */
public class DeclareVariables {
    public static void main(String[] args) {
        String name="张三";
        int age=20;
        char gender=‘男‘;
        double height=1.78;
        System.out.println("姓名:"+name);
        System.out.println("年龄:"+age);
        System.out.println("性别:"+gender);
        System.out.println("身高:"+height+"m");
    }    

}

 

声明四个变量,姓名、年龄、性别和身高,打印出来。

标签:sys   ring   rgs   main   style   logs   static   str   bsp   

原文地址:http://www.cnblogs.com/lanseyitai1224/p/7011420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!