20种语言的hello world

随Sir · · 630 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

20种语言的hello world

在我们学习一个新的编程语言时,往往都要输出hello world,接下来我们看看如何用20种编程语言分别输出hello world

1.java
public class helloworld {
    public static void main(String[] args) {
        System.out.println("helloworld");
    }
}
2.C
#include<stdio.h>
void main()
{
    printf("helloworld\n");
    return(0);
}
3.C++
#include <iostream>
using namespace std;
void main()                 
{
    cout << "helloworld\n";
}
5.C Sharp(C#)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace log{
    class helloworld{
        static void  Main(string[] args){
            Console.WriteLine("helloworld!");
        }
    }
} 
6.python
print("helloworld")
7.javascript
console.log("helloworld");
8.php
<?php
 echo "helloworld!\n" ;
?>
9.asp
<% response.write("helloworld") %>
10.vbscript
msgbox "helloworld"
11.pascal
begin
    writeln('helloWorld!');
end.
12.golang
package main
import "fmt"
func main(){
    fmt.Printf("helloworld\n");
}
13.prel
print "helloworld";
14.ruby
puts "helloworld"
15.R
cat('helloworld')
16.shell
#!/path
echo "helloworld"
17.html
<h1>helloworld<h1>
18.lua
print("hello world")
20.Objective-C
#import <Foundation/Foundation.h>
int main(int argc,const char *argv[])
{
    NSLog(@"Helloworld");
    return (0);
}

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:随Sir

查看原文:20种语言的hello world

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

630 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传