hello world(代碼)

hello world(代碼)

Hello World 中文意思是『你好,世界』。因為《The C Programming Language》中使用它做為第一個演示程式,非常著名,所以後來的程式設計師在學習編程或進行設備調試時延續了這一習慣。

基本介紹

  • 中文名:你好,世界
  • 外文名:Hello, World!
  • 創造者:Brian Kernighan
  • 類型:程式代碼
產生由來,原始碼,GBasic,VB,C,Swift,Go,BATCH,Java,C++,C#,PHP,ASP,JavaScript,Python 2,Python 3,LaTeX,Mathematica,Ruby,Free pascal,Kotlin,MATLAB,R,

產生由來

“Hello, world"程式是指在計算機螢幕上輸出“Hello,world”這行字元串的電腦程式,“hello, world”的中文意思是“你好,世界。”。這個例程在Brian Kernighan 和Dennis M. Ritchie合著的《The C Programme Language》使用而廣泛流行。因為它的簡潔,實用,並包含了一個該版本的C程式首次在1974年Brian Kernighan所撰寫的《Programming in C: A Tutorial》出現
printf("hello, world\n");
實際上將“Hello”和“World”一起使用的程式最早出現於1972年,在貝爾實驗室成員Brian Kernighan撰寫的內部技術檔案《Introduction to the Language B》之中:
main(){    extern a,b,c;    putchar(a);putchar(b);putchar(c);putchar('!*n');}a'hell';b'o,w';c'orld';
最初的"hello, world"列印內容有個標準,即全小寫,有逗號,逗號後空一格,且無感嘆號。不過沿用至今,完全遵循傳統標準形式的反而很少出現。

原始碼

易語言
調試輸出("Hello, world!")

GBasic

print("Hello, world!")

VB

Module MainFrm    Sub Main()        System.Console.WriteLine("Hello, World!")    End SubEnd Module

C

#include <stdio.h>int main(){    printf("Hello, World!");    return 0;}

Swift

print("Hello, World!")

Go

package mainfunc main() {    println("Hello, World!")}

BATCH

@echo offecho Hello, World!pause

Java

public class HelloWorld{    public static void main(String[] args){       System.out.println( "Hello, World!" );    }}

C++

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

C#

namespace HelloWorld{    class Program    {        static void Main(string[] args)        {            System.Console.Write("Hello, World!");        }    }}

PHP

echo "Hello, World!";

ASP

response.write ("Hello, World!")

JavaScript

console.log("Hello, World!")

Python 2

print "Hello, World!"

Python 3

print("Hello, World!")

LaTeX

\documentclass{article}\begin{document}    Hello, World!    \end{document}

Mathematica

方法一:基於Wolfram 底層語言(進入表達式界面使用)
Cell["Hello, World!"]
方法二:直接使用數學輸出函式
CellPrint[Cell["Hello, World!"]]

Ruby

def hello()      return "Hello , World"    end  

Free pascal

writeln('Hello, world!');

Kotlin

fun main(args: Array<String>) {    println("Hello, world!")}

MATLAB

disp('Hello, world!')

R

print('hello word!')
[1] "hello word!"

相關詞條

熱門詞條

聯絡我們