程序猿表白练级之Hello World 、、、
推荐一个优秀的编程网站:Hello World
The Hello World Collection
Hello World :世界,你好
世界上的第一个程序就是Hello World,由Brian Kernighan编写的
Hello World来源于Brian Kernighan 和Dennis M. Ritchie合著的图书:《The C Programme Language》、由于Kernighan和Ritchie合著的经典教程《The C Programming Language》的开篇第一个C程序例子是打印简单的“hello world”。从此之后,“hello world”就成了描述一个人编写的第一个程序的代名词
printf("hello, world\n");
程序员一般用Hello World这个程序测试一种新的系统或编程语言。对程序员来说,看到这两个单词显示在电脑屏幕上,往往表示他们的代码已经能够编译、装载以及正常运行了
Python 3
print("Hello, World!")
JavaScript
console.log("Hello, World!")
PHP
echo "Hello, World!";
C#
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
System.Console.Write("Hello, World!");
}
}
}
C++中的Hello World:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}
Java中的Hello World:
public class HelloWorld
{
public static void main(String args[])
{
System.out.println( "Hello, World!" );
}
}
C语言中的Hello World:
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
Swift
print("Hello, World!")
Html中的Hello World:
<html>
<head><title>Hello, World</title></head>
<body>Hello, World</body>
</html>