不同编程语言实现HelloWorld程序

2021-05-05 13:28

阅读:596

标签:不同   namespace   adl   ati   sys   eric   ext   std   编程   

C#

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 

int main()
{
      std::cout 

C语言

#include 

int main()
{
      printf("Hello World!");
      system("pause");
      return 0;
}

java

class HelloWorld{
    public static void main(String[] arr){
          System.out.println("Hello World!");
    }
}

python

print "Hello World!"

不同编程语言实现HelloWorld程序

标签:不同   namespace   adl   ati   sys   eric   ext   std   编程   

原文地址:https://www.cnblogs.com/fenggwsx/p/13192446.html


评论


亲,登录后才可以留言!