using System;
namespace HelloWorldApplication
{
class HelloWorld
{
static void Main(string[] args)
{
string name="YYYsai";
byte age=18;
bool bo=true;
float height=170.0f;
float weight=65.5f;
string zhuzhi="asjdlashfaljfas dfljaslfjsa";
Console.WriteLine("名字:"+name);
Console.WriteLine("年龄:"+age);
Console.WriteLine("性别:男"+bo);
Console.WriteLine("身高(cm):"+height);
Console.WriteLine("体重(kg):"+weight);
Console.WriteLine("住址:"+zhuzhi);
byte shuxue=80,yuwen=78,yingyu=98;
string str1="小明的数学成绩是:",str2="小明的语文成绩是:",str3="小明的英语成绩是:";
Console.WriteLine(str1+shuxue);
Console.WriteLine(str2+yuwen);
Console.WriteLine(str3+yingyu);
}
}
}