码迷,mamicode.com
首页 > 其他好文 > 详细

一句话证明你

时间:2018-06-20 14:33:27      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:echo   class   控制   rgs   ack   span   java   ret   输出   

各种语言的 hello world

Shell

echo "hello world"

 

python 2.6 
print
"hello,world"

 

Python 3.+

print ("hello,world")

 

C++ 

# include <ostream>
int main (void)
{
std::cout<<"hello world";
}

 

C 

# include <stdio.h>
int main (void)
{
printf ("\nhello world!")
return;
}

 

Java
public class helloworld {
// 程序的入口
public static void main (String args[]){
// 向控制台输出信息
System.out.println("hello world!");
}
}

 

Php

<?php
echo "hello world!";
?>

 

Ruby 

puts "hello world."

 

Go

package
import "fmt"
func main(){
fmt.Printf("hello world!\n God Bless You");

}

 

一句话证明你

标签:echo   class   控制   rgs   ack   span   java   ret   输出   

原文地址:https://www.cnblogs.com/sharesdk/p/9203152.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!