Markdown复习

Markdown复习

字体

斜体

hello,world

粗体

hello,world

斜粗体

hello,world

列表

有序列表

  1. A

  2. B

  3. C

  4. D

无序列表

  • A

  • B

  • C

链接

图片链接

本地图片

Markdown复习

 

网络图片

Markdown复习

超链接

哔哩哔哩

百度

分割线



代码块

public class HelloWorld {
   public static void main(String[] args) {
       System.out.println("Hello World");
  }
}
using System;
using System.Collections.Generic;
using System.Text;

namespace train
{
   class Class1
  {
       static void Main(string[] args)
      {
           Console.Write("请输入x=");
           double x = double.Parse(Console.ReadLine());
           Console.Write("请输入y=");
           double y = double.Parse(Console.ReadLine());
           Console.Write("请输入z=");
           double z = double.Parse(Console.ReadLine());
           if (x < y && x < z)
          {
               Console.WriteLine(x);
               if (y < z)
              {
                   Console.WriteLine(y);
                   Console.WriteLine(z);
              }
               else
              {
                   Console.WriteLine(z);
                   Console.WriteLine(y);
              }
          }
           else if (y < x && y < z)
          {
               Console.WriteLine(y);
               if (x < z)
              {
                   Console.WriteLine(x);
                   Console.WriteLine(z);
              }
               else
              {
                   Console.WriteLine(z);
                   Console.WriteLine(x);
              }

          }
           else//z最小
          {
               Console.WriteLine(z);
               if (x < y)
              {
                   Console.WriteLine(x);
                   Console.WriteLine(y);
              }
               else
              {
                   Console.WriteLine(y);
                   Console.WriteLine(x);
              }
          }

      }
  }
}

表格

id userName userPassword
1 A 123456
2 B 123456
3 C 123456
上一篇:运算符与if结构


下一篇:C#基础系列-多线程与异步