代码、网页测试Ⅰ

以下是代码块的测试:

1
2
3
4
5
6
7
8
9
10
11
12
13
#include<stdio.h>
int main()
{
int n = 0;
while(1)
{
if(3*n+2>100)
break;
printf("%d ",3*n+2);
n++;
}
return 0;
}

以下是HTML文本测试:

你好,欢迎光临!

what is this

> 版权声明:本文为原创,欢迎转载,转载请注明出处,勿用于商业用途!