您的位置:首页 > 其它

各种语言的hello world!

2016-07-20 09:17 316 查看
C++:

#include<iostream>
using namespace std;
int main(){
cout<<"Hello world!"<<endl;
return 0;
}


C:

#include<stdio.h>
using namespace std;
int main(){
puts("Hello world");
}


Pascal:

begin
writeln("Hello world");
end.


Python 2._:

print 'Hello world'


Python 3._:

print ('Hello world')


html:

<html>
<body>
<p>
Hello world!
</p>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: