首页 > 代码库 > 我见过的几门语言中的hello world
我见过的几门语言中的hello world
1.Java
public class hello {
public static void main(String[] args){
System.out.println("hello world!");
}
}
2.C
#include<stdio.h> int main(void) { printf("hello world!"); return 0; }
3.C++
#include<stdio.h> int main(void) { printf("hello world!"); return 0; }
4.C#
using System; namespace hello { class Program { static void Main(string[] args) { Console.WriteLine("Hello,world!"); Console.ReadKey(); } } }
5.python
print ‘Hello World!‘
6.JS
<html> <body> <script type="text/javascript"> document.write("Hello World!"); </script> </body> </html>
7.PHP
<html>
<body>
<?php
echo "hello, world!";
?>
</body>
</html>
9.VB.NET
Sub Main() Console.WriteLine("Hello world!") Console.ReadKey() End Sub
10.perl
#!C:\Perl\bin print "Hello World!";
11.OC
#import <Foundation/Foundation.h> int main() { NSLog(@"Hello World!"); return 0; }
12.Ruby
puts "Hello world!"
13.vb
Private Sub Form_Load() msbbox ("hello world!") End Sub
14.Delphi
procedure TForm1.Button1Click(Sender: TObject); begin Label1.Caption := ‘Hello World!‘; end;
15.Pascal
Program HelloWorld(output);
begin
writeln(‘Hello, world!‘)
end.
16.Go
package main
import "fmt"
func main() {
fmt.Printf("hello world!")
}
17.R
print("Hello,World!")
18.SQL
SQL> select ‘Hello World!‘ from dual;
19.HTML
<html> <body> Hello World! </body> </html>
20.Lua
print"hello world!"
我见过的几门语言中的hello world
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。