Hello World

多种语言实现Hello World

Starter

Guderian出品

Python

1
print("hello world")

C

1
2
3
4
5
6
#include<stdio.h>
int main()
{
printf("hello world");
return 0;
}

C++

1
2
3
4
5
6
7
8
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
cout<<"hello world";
return 0;
}

C#

1
2
3
4
5
6
7
8
9
using System;  
class TestApp
{
public static void Main()
{
Console.WriteLine("hello world");
Console.ReadKey();
}
}

Pascal

1
2
3
4
Program HelloWorld(output);  
begin
writeln('hello world')
end.

Java

1
2
3
4
5
6
7
public class HelloWorld 
{
public static void main(String[] args)
{
System.out.println("hello world");
}
}

本文标题:Hello World

文章作者:G-SS-Hacker

发布时间:2019年07月28日 - 15:29:08

最后更新:2020年01月29日 - 17:17:20

原始链接:https://G-SS-Hacker.github.io/hello-world/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。