码迷,mamicode.com
首页 > 编程语言 > 详细

不同编程语言实现HelloWorld程序

时间:2020-06-25 20:00:13      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:不同   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 <iostream>

int main()
{
      std::cout << "Hello World!" << std::endl;
      std::cin.get();
      return 0;
}

C语言

#include <stdio.h>

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

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