求大神帮忙写一段C#控制台定义类代码

定义要求:可以实现输出的结果有姓名身高体重兴趣爱好等运用类方法等!... 定义要求:可以实现输出的结果有姓名身高体重兴趣爱好等运用类方法等! 展开
 我来答
帐号已注销
推荐于2016-01-10 · TA获得超过140个赞
知道小有建树答主
回答量:132
采纳率:0%
帮助的人:62万
展开全部
    public class Program
    {
        private static void Main(string[] args)
        {
            Person person = new Person();
            person.Name = "吕小布";
            person.Height = 183;
            person.Sex = "男";
            person.Weight = 60;
            person.Hobit = "篮球";
            Console.WriteLine("姓名: {0},身高: {1},性别: {2},体重: {3},爱好: {4}",person.Name,person.Height,person.Sex,person.Weight,person.Hobit);
            Console.Read();
        }
 
        public class Person
        {
            public string Name { get; set; }
            public string Sex { get; set; }
            public int Height { get; set; }
            public int Weight { get; set; }
            public string Hobit { get; set; }
            public Person()
            {
                
            }
        }
    }
追问
可以设置成单独一行的吗
就是像这样
姓名:XXX
年龄:XXX
……
这种格式
追答
    public class Program
    {        
         private static void Main(string[] args)
        {
            Person person = new Person();
            person.Name = "吕小布";
            person.Height = 183;
            person.Sex = "男";
            person.Weight = 60;
            person.Hobit = "篮球";
            Console.WriteLine("姓名: {0}",person.Name);
            Console.WriteLine("性别: {0}", person.Sex);
            Console.WriteLine("身高: {0}", person.Height);
            Console.WriteLine("体重: {0}", person.Weight);
            Console.WriteLine("爱好: {0}", person.Hobit);
            Console.ReadLine();
        }
 
        public class Person
        {
            public string Name { get; set; }
            public string Sex { get; set; }
            public int Height { get; set; }
            public int Weight { get; set; }
            public string Hobit { get; set; }
            public Person()
            {
                
            }
        }
    }
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式