用户:
杨锦和查看:0 回复:0 评论:0 创建时间:2022-08-26T19:47:45
1、Python
print('Hello,World')
2、JavaScript
console.log('Hello,World')
3、C++
#include<stdio.h>
int main(){
printf('Hello,World')
return 0;
}
4、Html
<DOCTYPE html>
<html>
<head>
<title>Hello,World</title>
</head>
<body>
<script>
document.write('Hello,World')
</script>
</body>
</html>