hi ich gib mal meinen frei

aber nich zu viel klauen plz.
//Taschenrechner von Mark Paspirigilis.cpp - Mein erstes Projekt
#include <iostream>
#include <cmath>
#include <string>
using namespace std ;
int main ()
{
for ( int x = 1 ; x <= 900 ; x += 1 )
{
cout << "Marks Taschenrechnerprogramm 1.2" << endl ;
cout << endl ;
cout << "Waehlen sie den Rechenvorgang aus" << endl ;
cout << "Multiplikation [1]" << endl ;
cout << "Division [2]" << endl ;
cout << "Addition [3]" << endl ;
cout << "Subtraktion [4]" << endl ;
cout << "Quadrieren [5]" << endl ;
cout << "Quadratwurzel ziehen [6]" << endl ;
cout << "Beenden [0]" << endl ;
cout << "Bitte geben sie eine der oben genannten Ziffern als Rechenvorgang an." << endl ;
string y;
cin >> y;
if ( y >= "0" )
{
if ( y == "1" )
{
double sjdfgjpaspirgilisndfsdnj ;
double jdfjpaspirgilissjngjnsdn ;
double dsfgaerqewpaspirgilisipkl ;
cout << "Bitte geben sie die erste Zahl ein... " ;
cin >> sjdfgjpaspirgilisndfsdnj ;
cout << "Bitte geben sie die zweite Zahl ein... " ;
cin >> jdfjpaspirgilissjngjnsdn ;
dsfgaerqewpaspirgilisipkl = sjdfgjpaspirgilisndfsdnj * jdfjpaspirgilissjngjnsdn;
cout << "Das Ergebnis aus " << sjdfgjpaspirgilisndfsdnj << " x " << jdfjpaspirgilissjngjnsdn << " = " << dsfgaerqewpaspirgilisipkl << endl ; cout << endl ; cout << endl ;
cout << "Bitte enter druecken" << endl ;
fflush(stdin);
getchar();
}
if ( y == "2" )
{
double sjdfgjpaspirgilisndfsdnj ;
double jdfjpaspirgilissjngjnsdn ;
double dsfgaerqewpaspirgilisipkl ;
cout << "Bitte geben sie die erste Zahl ein... " ;
cin >> sjdfgjpaspirgilisndfsdnj ;
cout << "Bitte geben sie die zweite Zahl ein... " ;
cin >> jdfjpaspirgilissjngjnsdn ;
dsfgaerqewpaspirgilisipkl = sjdfgjpaspirgilisndfsdnj / jdfjpaspirgilissjngjnsdn;
cout << "Das Ergebnis aus " << sjdfgjpaspirgilisndfsdnj << " : " << jdfjpaspirgilissjngjnsdn << " = " << dsfgaerqewpaspirgilisipkl << endl ; cout << endl ; cout << endl ;
cout << "Bitte enter druecken" << endl ;
fflush(stdin);
getchar();
}
if ( y == "3" )
{
double sjdfgjpaspirgilisndfsdnj ;
double jdfjpaspirgilissjngjnsdn ;
double dsfgaerqewpaspirgilisipkl ;
cout << "Bitte geben sie die erste Zahl ein... " ;
cin >> sjdfgjpaspirgilisndfsdnj;
cout << "Bitte geben sie die zweite Zahl ein... " ;
cin >> jdfjpaspirgilissjngjnsdn;
dsfgaerqewpaspirgilisipkl = sjdfgjpaspirgilisndfsdnj + jdfjpaspirgilissjngjnsdn;
cout << "Das Ergebnis aus " << sjdfgjpaspirgilisndfsdnj << " + " << jdfjpaspirgilissjngjnsdn << " = " << dsfgaerqewpaspirgilisipkl << endl ; cout << endl ; cout << endl ;
cout << "Bitte enter druecken" << endl ;
fflush(stdin);
getchar();
}
if ( y == "4" )
{
double sjdfgjpaspirgilisndfsdnj ;
double jdfjpaspirgilissjngjnsdn ;
double dsfgaerqewpaspirgilisipkl ;
cout << "Bitte geben sie die erste Zahl ein... " ;
cin >> sjdfgjpaspirgilisndfsdnj;
cout << "Bitte geben sie die zweite Zahl ein... " ;
cin >> jdfjpaspirgilissjngjnsdn;
dsfgaerqewpaspirgilisipkl = sjdfgjpaspirgilisndfsdnj - jdfjpaspirgilissjngjnsdn;
cout << "Das Ergebnis aus" << sjdfgjpaspirgilisndfsdnj << " - " << jdfjpaspirgilissjngjnsdn << " = " << dsfgaerqewpaspirgilisipkl << endl ; cout << endl ; cout << endl ;
cout << "Bitte enter druecken" << endl ;
fflush(stdin);
getchar();
}
if ( y == "5" )
{
double sjdfgjpaspirgilisndfsdnj ;
double dsfgaerqewpaspirgilisipkl ;
cout << "Bitte geben sie die zu potenzierende Zahl ein... " ;
cin >> sjdfgjpaspirgilisndfsdnj;
dsfgaerqewpaspirgilisipkl = sjdfgjpaspirgilisndfsdnj * sjdfgjpaspirgilisndfsdnj;
cout << "Das Quadrat aus" << sjdfgjpaspirgilisndfsdnj << " = " << dsfgaerqewpaspirgilisipkl << endl ; cout << endl ; cout << endl ;
cout << "Bitte enter druecken" << endl ;
fflush(stdin);
getchar();
}
if ( y == "6" )
{
double sjdfgjpaspirgilisndfsdnj ;
double dsfgaerqewpaspirgilisipkl ;
cout << "Bitte geben sie die erste Zahl ein... " ;
cin >> sjdfgjpaspirgilisndfsdnj ;
dsfgaerqewpaspirgilisipkl = sqrt (sjdfgjpaspirgilisndfsdnj);
cout << "Die Wurzel aus" << " = " << dsfgaerqewpaspirgilisipkl << endl ; cout << endl ; cout << endl ;
cout << "Bitte enter druecken" << endl ;
fflush(stdin);
getchar();
}
if ( y == "0" )
{
x = x + 899;
}
}
else
{
cout << "Rechenweg nicht vorhanden" << endl ; cout << endl ; cout << endl ;
cout << "Bitte enter druecken" << endl ;
fflush(stdin);
getchar();
}
}
cout << "Dieses Programm ist Beendet" << endl ;
fflush(stdin);
getchar();
return 0;
}