HOME       LIST

Hello World、各プログラミング言語

Yo! 世界~~、各言語のHello World、PHP, C, C#


PHPのhello world

<?php
echo "Hello World!";
?>

Cのhello world

int main(int argc, char *args[])
{
    printf("Hello, world!\n");
    return 0;
}

C#のhello world

using System;
namespace HelloWorld
{
    class Hello 
    {
        static void Main() 
        {
            Console.WriteLine("Hello World!");

            // Keep the console window open in debug mode.
            Console.WriteLine("Press any key to exit.");
            Console.ReadKey();
        }
    }
}

javaのhello world

public class Hello {
  public static void main(String[] args) {
    System.out.println("Hello, world!");
  }
}

wikipediaのhello world

他の言語のを見るならこちら。。。
全部の検証は出来ない。。。
こんなに言語があったの?!!!!!
wikipedia Hello worldプログラムの一覧

以前コンテンツ:【VBA】月の日数を取得する方法
次のコンテンツ:【VBA】MS MDBまたはACCDBへの接続



Copyright(c) 2007-2024 dojeun.com All Rights Reserved.

Valid XHTML 1.0 Transitional