rst文件测试

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

强调

斜体

printf()

  • hhhhhhhh

  • hhhhhhhh

  • hhhhhhhh

  • hhhhhhhh

  • hhhhhhhh

  • hhhhhhhh

  1. hhhhhhhh

  2. hhhhhhhh

  3. hhhhhhhh

  4. hhhhhhhh

  5. hhhhhhhh

  6. hhhhhhhh

  1. hhhhhhhh

  2. hhhhhhhh

  3. hhhhhhhh

  4. hhhhhhhh

  5. hhhhhhhh

  6. hhhhhhhh

A

B

A and B

False

False

False

True

False

False

False

True

False

True

True

True

Note

This is a note admonition. This is the second line of the first paragraph.

  • The note contains all indented body elements following.

  • It includes this bullet list.

Hint

This is a hint admonition.

Important

This is a important admonition.

Tip

This is a tip admonition.

Warning

This is a warning admonition.

Caution

This is a caution admonition.

Attention

This is a attention admonition.

Error

This is a error admonition.

Danger

This is a danger admonition.

c test
 1#include <stdio.h>
 2
 3int main()
 4{
 5   printf("hello, world! This is a C program.\n");
 6   for(int i=0;i<10;i++ ){
 7      printf("output i=%d\n",i);
 8   }
 9
10   return 0;
11}