4e1548abe2
Part1
22 lines
560 B
C#
22 lines
560 B
C#
using System;
|
|
|
|
namespace Lesson2变量
|
|
{
|
|
class classwork
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
double num = 36.6;
|
|
Console.WriteLine(num);
|
|
string name, sex, addr;
|
|
name = "zj";
|
|
sex = "male";
|
|
addr = "jssszsgyyq";
|
|
int age = 21;
|
|
float hight = 192f, weight = 79.5f;
|
|
Console.WriteLine("年龄:" + age);
|
|
Console.WriteLine($"姓名:{name}\n年龄:{age}\n身高:{hight}体重:{weight}家庭住址:{addr}");
|
|
}
|
|
}
|
|
}
|