用户:
程泽熙11查看:10 回复:9 评论:10 创建时间:2021-09-28T21:01:00
先看JavaScript的:

再看C++的:

啊这!
python:
print("heloworld")
c++:
#include<cstdio>
using namespace std;
int main()
{
printf("helloworld");
return 0;
}
c:
#include<stdio.h>
int main()
{
printf("helloworld");
return 0;
}
(c居然比c++简单)
点赞0
评论
白篮这才是js捏
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
console.log("Hello world");
</script>
</body>
</html>点赞1
评论