/********************************************************* Uebungsblatt 1, Aufgabe 1 *
* Dieses Programm schreibt "Hello World" in die Konsole *
* Autor: Fritz Muster, [email protected] *
* Letzte Aenderung 5. Februar 2009 *
********************************************************/
//Importiert cin und cout aus der iostream Bibliothek
#include <iostream>
//gliedert das Programm in den namespace "std" ein
using namespace std;
/********************************************************
* Funktion main() *
* schreibt "Hello World" auf die Konsole *
* *
* Eingabewerte: Keine *
* Rückgabewerte: *
* 0 für erfolgreiche Durchführung des Programms *
********************************************************/
int main() {
cout << "Hello World" << endl;
system("pause"); // only for DevCPP !
return 0;
}
Aufgabe:
Compilieren Sie das Programm und führen Sie es aus.
Wie macht man dass und wie sieht es dann aus wenn es funktioniert hat?
Danke für die Hilfe und lieben Gruß
ohlala Gast |