Markdown基础
二级标题
三级标题
四级标题
字体
hello,world!
hello,world!
hello,world!
hello,world!
引用
书山有路勤为径
分割线


超链接
列表
表格
| 名字 | 性别 | 民族 |
|---|---|---|
| 张三 | 男 | 汉 |
| 1 | 2 | 3 |
|---|---|---|
代码
public class test {
public static void main(String[] args)
{
int i, j;
for (i = 1; i < 10; i++)
{ //控制行
for ( j = 1; j <= i; j++) //控制列
System.out.print(i + "×" + j + "=" + (i * j) +" ");
System.out.println();
}
}
}

浙公网安备 33010602011771号