码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA个人信息

时间:2016-11-14 19:40:54      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:static   main   str   new   print   java   生日   int   void   

class Person
{
String name;
String sex;
int age;
String birthday;
}

class demo1
{
public static void main(String[] args)
{
Person zh = new Person();
zh.name ="张恒";
zh.sex="男";
zh.age=21;
zh.birthday="1996年1月2日";

System.out.println("个人信息:"+"姓名:"+zh.name+" "+"性别:"+zh.sex+" "+"年龄:"+zh.age+"岁 "+"生日:"+zh.birthday);

}
}

JAVA个人信息

标签:static   main   str   new   print   java   生日   int   void   

原文地址:http://www.cnblogs.com/zhv5/p/6062951.html

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