Erste Programm in C++
parent
b3b7c89992
commit
e8c0b072c0
|
@ -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>
|
#include <iostream>
|
||||||
using namespace std;
|
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() {
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue