Markdown复习

Markdown复习

字体

斜体

hello,world

粗体

hello,world

斜粗体

hello,world

列表

有序列表

  1. A

  2. B

  3. C

  4. D

无序列表

  • A

  • B

  • C

链接

图片链接

本地图片

头像

 

网络图片

头像

超链接

哔哩哔哩

百度

分割线



代码块

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);
              }
          }

      }
  }
}

表格

iduserNameuserPassword
1 A 123456
2 B 123456
3 C 123456

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐