个人复习有关md的基础语法

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
1A123456
2B123456
3C123456
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值