Markdown复习
字体
斜体
hello,world
粗体
hello,world
斜粗体
hello,world
列表
有序列表
-
A
-
B
-
C
-
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);
}
}
}
}
}
表格
id | userName | userPassword |
---|---|---|
1 | A | 123456 |
2 | B | 123456 |
3 | C | 123456 |