黑马程序员技术交流社区

标题: 各种语言Hello World,你写过哪些呢?来晒晒吧!! [打印本页]

作者: 徐慧书    时间: 2012-5-6 09:56
标题: 各种语言Hello World,你写过哪些呢?来晒晒吧!!
作为程序员,无论啥语言开始的总是Hello World,来看看自己写过哪些语言的的Hello World吧,
作者: 程旦    时间: 2012-5-6 10:00
C C++ C# java
作者: 姚鑫    时间: 2012-5-6 10:01
来个C#吧
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HelloWorld
  6. {
  7.    class Program
  8.    {
  9.        static void Main(string[] args)
  10.        {
  11.           Console.WriteLine("Hello World!");
  12.           Console.ReadLine();
  13.        }
  14.    }
  15. }
复制代码

作者: 黄燕京    时间: 2012-5-6 10:43
C# 和,java
作者: 李哲    时间: 2012-5-6 12:17
{:soso_e100:}

作者: 杨志    时间: 2012-5-6 12:45
#include <iostream>
usenamespace std;
int main(){
cout<<"helloworld";
}

#include <stdio>
void main(){
sprintf("helloword");
}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2