Erste Programm in C++

master
3009594 2024-09-01 17:54:26 +02:00
parent b3b7c89992
commit e8c0b072c0
1 changed files with 15 additions and 8 deletions

View File

@ -1,15 +1,22 @@
//============================================================================
// Name : TE2.cpp
// Author : Obai
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
// Inkludiere den Input-Output-Stream für das Programm
#include <iostream>
using namespace std;
/*
* - cout: steht für (Ausgabe) // prints !!!Hello World!!
* - cin : steht für (Eingabe)
* - endl: "end line" (Ende der Zeile) um einen Zeilenumbruch in der Ausgabe einzufügen
* - return 0 : Gibt an, dass das Programm beendet wurde
*/
// Hauptmethode, die ausgeführt wird, wenn das Programm gestartet wird
int main() {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
cout << " !!!Hello World!! " << endl; // prints !!!Hello World!!
cout << " !!!Hello World2!! " << endl; // prints !!!Hello World!!
// Gibt an, dass das Programm beendet wurde.
return 0;
}