C语言的第一个程序

C语言的第一个程序

#include<stdio.h>
int main()
{
	printf("hello world");
	return 0;
}

html的第一个程序

<!doc html>
<html>
 	<head>
		<meta charset=“gbk”>
		<title>标题</title>
	</head>
	<body>
		<p>hello world!</p>
	</body>
</html>

对于html的这种标签语言,实现的方法
打开记事本粘贴复制代码
保存时将后缀名改为html
 双击后打开即可。

猜你喜欢

转载自blog.csdn.net/weixin_45079974/article/details/97140293