各類程式語言的Hello World寫法

知行旅人發表於2014-03-07
(每隔一段時間整理幾門語言的HelloWorld寫法,更新中......)

A開頭:
        1、Android(版本4.2.2)
          Activity:
          package com.javagoboy.helloworld;

          import android.os.Bundle;
          import android.app.Activity;
          import android.view.Menu;

          public class HelloWorld extends Activity {

                    @Override           
                    protected void onCreate(Bundle savedInstanceState) {
                           super.onCreate(savedInstanceState);
                           setContentView(R.layout.activity_hello_world);
                    }
 
                    @Override
                    public boolean onCreateOptionsMenu(Menu menu) {
                           getMenuInflater().inflate(R.menu.hello_world, menu);
                           return true;
                    }
           }
          Activity配置:
          <activity
            android:name="com.javagoboy.helloworld.HelloWorld"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>               
        啟動應用:
             
B開頭:
C開頭:
         
1、C
               vi helloworld.c

               #include<stdio.h>
 
               int main(void) {
                     printf("Hello,World!\n");
                     return 0;
               }
               在Linux環境下執行:
               使用gcc編譯:gcc helloworld.c -o helloworld
                            執行:./helloworld

         
2、C++
              vi helloworld.cpp

               #include <stdio.h>
               #include <iostream>

               int main() {

                      puts("Hello,World!");
                      std::cout << "Hello,World!" << std::endl;

                      return 0;
                }
                編譯:# g++ helloworld.cpp -o helloworld
                執行:# ./helloworld

D開頭:
E開頭:
F開頭:
G開頭:
         1、Go語言
 
               package main
               import (
                     "fmt"
               )
               func main() {
                      fmt.Println("Hello World !");
               }
               儲存為:helloworld.go
               執行:go run helloworld.go

H開頭:
I開頭:
J開頭:
        
1、Java

               public class HelloWorld {
                         public static void main(String[] args) {
                                System.out.println("Hello,World !");
                         }
               }
               儲存為:HelloWorld.java
               編譯:javac HelloWorld.java
               執行:java HelloWorld

            2、JavaScript(ECMAScript派生語言 )

               <html>
                    <title>Hello World</title>
                <body>
                    <script type="text/javascript">
                         document.write("Hello World !");
                         alert("Hello World !");
                    </script>
                </body>
               </html>

K開頭:
L開頭:
M開頭:
N開頭:
O開頭:
P開頭:
       
  1、Python(版本3.3.2)

               命令列:print("Hello World");

Q開頭:
R開頭:
S開頭:
         
1、sh(Shell指令碼)

               新建一個.sh檔案: vi helloworld.sh
               在helloworld.sh中輸入:
               #!/bin/sh
               a="Hello World !"
               echo $a

               修改helloworld.sh為可執行檔案:chmod +x helloworld.sh
               執行 ./helloworld.sh
T開頭:
U開頭:
V開頭:
W開頭:
X開頭:
Y開頭:
Z開頭

相關文章