java:
公司主營(yíng)業(yè)務(wù):網(wǎng)站建設(shè)、成都做網(wǎng)站、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)建站是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。創(chuàng)新互聯(lián)建站推出青龍免費(fèi)做網(wǎng)站回饋大家。
java"public class helloworld
{
public static void main(String []args)
{
System.out.println("Hello world!");
}
}
python2:
print "Hello world!"
python3:
print ("Hello world!")
C/C++:
#include stdio.h
int main()
{
printf("Hello world!\n");
return 0;
}
Linux intel asm(由于百度知道不支持匯編語(yǔ)言,因此可讀性會(huì)差一點(diǎn)):
[section data]
msg ? ?db ? ?"Hello world!", 0ax
len ? ? ? ?equ $ - msg
[section text]
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, msg
mov edx, len
int 0x80
mov eax, 1
mov ebx, 0
int 0x80
Linux ATT asm(由于百度知道不支持匯編語(yǔ)言,因此可讀性會(huì)差一點(diǎn)):
.data
msg:
.ascii "Hello world!\n"
len = . - msg
.text
.globl _start
_start:
movl $4, %eax
movl $1, %ebx
movl $msg, %ecx
movl $len, %edx
int $0x80
movl $1, %eax
movl $0, %ebx
int $0x80
php:
?php
echo "Hello world!"
?
Hello World 中文意思是『世界,你好』。因?yàn)椤禩he C Programme Language》中使用它做為第一個(gè)演示程序,非常著名,所以后來(lái)的程序員在學(xué)習(xí)編程或進(jìn)行設(shè)備調(diào)試時(shí)延續(xù)了這一習(xí)慣。
產(chǎn)生由來(lái)
“Hello, world"程序是指在計(jì)算機(jī)屏幕上輸出“Hello,world”這行字符串的計(jì)算機(jī)程序,“hello, world”的中文意思是“你好,世界?!?。這個(gè)例程在Brian Kernighan 和Dennis M. Ritchie合著的《The C Programme Language》使用而廣泛流行。因?yàn)樗暮?jiǎn)潔,實(shí)用,并包含了一個(gè)該版本的C程序首次出現(xiàn)在1974年Brian Kernighan所撰寫的《Programming in C: A Tutorial》
printf("hello, world\n");
實(shí)際上將“Hello”和“World”一起使用的程序最早出現(xiàn)于1972年,出現(xiàn)在貝爾實(shí)驗(yàn)室成員Brian Kernighan撰寫的內(nèi)部技術(shù)文件《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"打印內(nèi)容有個(gè)標(biāo)準(zhǔn),即全小寫,有逗號(hào),逗號(hào)后空一格,且無(wú)感嘆號(hào)。不過(guò)沿用至今,完全遵循傳統(tǒng)標(biāo)準(zhǔn)形式的反而很少出現(xiàn)。[1]
源代碼
VB
Module MainFrm
Sub Main()
System.Console.WriteLine("Hello, World!")
End Sub
End Module
C
#include stdio.h
int main()
{
printf("Hello, World!");
return 0;
}
Swift
print("Hello, World!")
Go
package main
import "fmt"
func main() {
fmt.Print("Hello, World!")
}
BATCH
@echo off
echo 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!";
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 底層語(yǔ)言(進(jìn)入表達(dá)式界面使用)[2]
Cell["Hello, World!"]
方法二:直接使用數(shù)學(xué)輸出函數(shù)
CellPrint[Cell["Hello, World!"]]
Ruby
def hello()
return "Hello , World" ?
end
Kotlin
fun main(args: ArrayString) {
println("Hello, world!")
}
打開java運(yùn)行環(huán)境(就是編寫java程序用的軟件),然后輸入以下語(yǔ)句,點(diǎn)擊編譯運(yùn)行后即可輸出“Hello World,”。
public class Test{
public static void main(String args[]){
System.out.println("Hello World.");
}
}
該法是直接調(diào)用java的printfln函數(shù)來(lái)完成輸出操作。
第1行是創(chuàng)建一個(gè)“HelloWorld”類。
第2行是主方法的聲明語(yǔ)句。
第3行是輸出語(yǔ)句,輸出“HelloWold”。
擴(kuò)展資料:
“Hello World”撰寫時(shí)必須注意以下幾點(diǎn):
1、擴(kuò)展名是.java。
2、主文檔名必須與類名相同。類名是指class關(guān)鍵字后的名稱。
3、注意每個(gè)字母的大小寫。Java程序區(qū)分字母大小寫,System與system對(duì)Java程序來(lái)說(shuō)是不同的名稱。
4、空格只能是半角空格符或Tab字符:有些初學(xué)者可能不小心輸入了全角空格符,這很不容易檢出出來(lái)。
題目的意思
就是根據(jù)輸入的不一樣, 進(jìn)行判斷和輸出
例一
import?java.util.Scanner;
public?class?Test?{
public?static?void?main(String[]?args)?{
Scanner?input?=?new?Scanner(System.in);
System.out.println("請(qǐng)輸入你的性別?男/女");
String?sex?=?input.nextLine();//讀取輸入的一行
if(sex.equals("男")){//分情況輸出
System.out.println("帥哥你好");
}else?if(sex.equals("女")){
System.out.println("美女你好");
}else{
System.out.println("你好");
}
}
}
輸出
請(qǐng)輸入你的性別?男/女
男
帥哥你好
例二:
import?java.util.Scanner;
public?class?PrintDemo?{
public?static?void?main(String[]?args)?{
String[]?enNum?=?{"zero","one","two","three","four","five"};
System.out.println("請(qǐng)輸入0~5的數(shù)字.系統(tǒng)轉(zhuǎn)換成英文并輸出");
Scanner?input?=?new?Scanner(System.in);//控制臺(tái)輸入
while(true){
String?line?=?input.nextLine();
if(line.equals("exit")){
System.out.println("系統(tǒng)退出");
System.exit(0);
}else{
int?x?=?Integer.parseInt(line);
System.out.println("數(shù)字"+x+"轉(zhuǎn)成英語(yǔ):"+enNum[x]);//控制臺(tái)輸出
}
}
}
}
運(yùn)行測(cè)試
請(qǐng)輸入0~5的數(shù)字.系統(tǒng)轉(zhuǎn)換成英文并輸出
2
數(shù)字2轉(zhuǎn)成英語(yǔ):two
3
數(shù)字3轉(zhuǎn)成英語(yǔ):three
exit
系統(tǒng)退出