不同编程语言实现HelloWorld程序
2021-05-05 13:28
标签:不同 namespace adl ati sys eric ext std 编程 不同编程语言实现HelloWorld程序 标签:不同 namespace adl ati sys eric ext std 编程 原文地址:https://www.cnblogs.com/fenggwsx/p/13192446.htmlC#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadLine();
}
}
}
C++
#include
C语言
#include
java
class HelloWorld{
public static void main(String[] arr){
System.out.println("Hello World!");
}
}
python
print "Hello World!"
文章标题:不同编程语言实现HelloWorld程序
文章链接:http://soscw.com/index.php/essay/82753.html