使用命令行的方式 打印出“大家好”

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Day01_Homework1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("大家好");
Console.ReadLine();
}
}
}

在D盘根目录下创建一个.CS文件,文件名为DemoTest1.cs

  • 打印数字1000
  • 打印小数 1.1
  • 打印“今天是2018年第一个工作日
  • 然后编译并运行,查看结果
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Day01_Homework1
{
class DemoTest1
{
static void Main()
{
Console.WriteLine(1000);
Console.WriteLine(1.1);
Console.WriteLine("“今天是2018年第一个工作日");
Console.ReadLine();
}
}
}

创建C#控制台应用程序,项目名字:DAY01_HomeWork1

打印语句

  1. 创建 HomeWork1.cs 类,使用打印语句
    打印以下内容,并观察结果。
    10
    “10”
    10 + 10
    “10” + “10”
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Day01_Homework1
{
class HomeWork1
{
static void Main(string[] vs)
{
Console.WriteLine(10);
Console.WriteLine("“10”");
Console.WriteLine(10 + 10);
Console.WriteLine("10" + "10");
Console.ReadLine();
}
}
}

Math类提供的一些常用方法

  1. 创建 HomeWork2.cs,尝试测试:Math类提供的一些常用方法
    Math.Max()
    Math.Min()
    Math.Floor( -10.9 )
    Math.Round( )
    Math.Ceiling( )
    Sqrt(), Abs()…..
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Day01_Homework1
{
class HomeWork2
{
static void Main(string[] arg)
{
Console.WriteLine(Math.Max(10,2000));
Console.WriteLine(Math.Min(10, 2000));
Console.WriteLine(Math.Floor(-10.9));
Console.WriteLine(Math.Round(10.89459, 2));
Console.WriteLine(Math.Ceiling(2000.00));
Console.WriteLine(Math.Sqrt(100));
Console.WriteLine(Math.Abs(10));
Console.ReadLine();
}
}
}