Markdown 语法
Markdown学习
标题:(## )
字体
helloworld
helloworld
helloworld
helloworld
引用
java学习好
分割线
(***)
(---)
图片
超链接
列表
一、有序列表(1.)
-
A
-
B
-
C
-
D
二、无序列表(- )
-
A
-
B
-
C
-
D
表格
代码(波浪线线下方```)
public class TestVariable
{
public static void main(String[] args)
{
int age = 18;
int b; //只是声明了变量吧,没有初始化;
int x=0,y=0,z=1;
System.out.println(age);
b=0; //变量使用前必须初始化!
System.out.println(b);
System.out.println(z);
}
}