A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

作为程序员,无论啥语言开始的总是Hello World,来看看自己写过哪些语言的的Hello World吧,

5 个回复

倒序浏览
C C++ C# java
回复 使用道具 举报
来个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. }
复制代码
回复 使用道具 举报
C# 和,java
回复 使用道具 举报
{:soso_e100:}
回复 使用道具 举报
#include <iostream>
usenamespace std;
int main(){
cout<<"helloworld";
}

#include <stdio>
void main(){
sprintf("helloword");
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马