Share to:

Hello world program

Hello world je prvi program koji se pravi na evropskim fakultetima. To je najčešće jedan od prvih programa koje naprave programeri početnici u cilju upoznavanja sa osnovama programerskih vještina.

Ovaj program obično ispisuje poruku ("Hello world", tj. "Pozdrav svijete") na osnovni izlaz (output) pri izvršavanju.

Implementacija u raznim programskim jezicima

with TEXT_IO;
procedure HELLO is
begin
  TEXT_IO.PUT_LINE ("Hello world!");
end HELLO;
'Hello world!'
PRINT "Hello World!"
#include <stdio.h>

int main()
{
  printf("Hello, world!\n");
  return 0;
}
#include <iostream>

using namespace std;

int main()
{
  cout << "Hello, world!" << endl;
  return 0;
}
using System;

class HelloWorld
{
  static void Main()
  {
    Console.WriteLine("Hello World");
    Console.ReadLine();
  }
}
        IDENTIFICATION DIVISION.
          Program-Id. Hello-World.
       *
        ENVIRONMENT DIVISION.
       *
        DATA DIVISION.
       *
        PROCEDURE DIVISION.
        Para1.
            DISPLAY "Hello, world.".
       *
            Stop Run.
C     Hello World u Fortran-u

      PROGRAM HELLO
      WRITE (*,100)
      STOP
  100 FORMAT (' Hello World! ' /)
      END
// datoteka HelloWorld.java
public class HelloWorld {
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}
 program Hello (output);
 
 begin
     writeln ('Hello, world!');
 end.
 print "Hello, world!\n";

ili

 package Hello;
 sub new() { bless {} }
 sub Hello() { print "Hello, World! \n" }
 package main;
 my $hello == new Hello;
 $hello->Hello();
print("Hello, world!")
 $ include "seed7_05.s7i";
 
 const proc: main is func
   begin
     writeln("Hello, world!");
   end func;

Vanjski linkovi

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.
Prefix: a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9

Portal di Ensiklopedia Dunia

Kembali kehalaman sebelumnya