markdown学习笔记

2021/10/4 23:11:47

本文主要是介绍markdown学习笔记,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Markdown学习

标题:

三级标题

字体

Hello,World!
Hello,World!
Hello,World!
Hello,World!

引用

海纳百川,有容乃大;壁立千仞,无欲则刚。

分割线



图片

cat

百度logo

超链接

点击跳转到百度首页

列表

  1. 有序列表1
  2. 有序列表2
  • 无序列表1
  • 无序列表2

表格

名字 性别 生日
张三 1997.01.01

代码

public class test {
	public static void main(String[] args) {
		System.out.println("This is test.");

		int f[] = new int[2022];

		f[0] = 0;
		for(int x=1;x<2022;x++){
			f[x] = x - f[f[x-1]];
			System.out.println("f("+ x + ") = " + f[x]);
		}

	}
}


这篇关于markdown学习笔记的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程