不同编程语言实现HelloWorld程序
Posted fenggwsx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不同编程语言实现HelloWorld程序相关的知识,希望对你有一定的参考价值。
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程序的主要内容,如果未能解决你的问题,请参考以下文章