diff --git a/Sonstiges/BMI.cpp b/Sonstiges/BMI.cpp index 50a6163..c0598f8 100644 --- a/Sonstiges/BMI.cpp +++ b/Sonstiges/BMI.cpp @@ -7,7 +7,7 @@ int main() { - long double height, weight; + long double height = 0, weight = 0; std::string input; std::cout<<"Gib deine Gr\x94\xE1 \be in metern ein: "; diff --git a/Sonstiges/Kreuzende Autos.cpp b/Sonstiges/Kreuzende Autos.cpp index 4f232d4..98275a6 100644 --- a/Sonstiges/Kreuzende Autos.cpp +++ b/Sonstiges/Kreuzende Autos.cpp @@ -8,7 +8,7 @@ int main() { std::string input; - long double speed, distance, speedOppositeTrack, position; + long double speed = 0, distance = 0, speedOppositeTrack = 0, position = 0; std::cout << "Gib die Strecke der Landstra\xE1 \be in km ein: "; do diff --git a/Sonstiges/Schleifen.cpp b/Sonstiges/Schleifen.cpp index c7dd56f..fc48cc1 100644 --- a/Sonstiges/Schleifen.cpp +++ b/Sonstiges/Schleifen.cpp @@ -1,89 +1,68 @@ #include #include #include +#include int main() { long long depth = 1; std::string input; - std::cout << "Geben sie die Tiefe ein: "; + std::cout << "Gib die Tiefe ein: "; do { getline(std::cin, input); std::stringstream(input) >> depth; - if(depth<2)std::cout << "ERROR: Die Zahl muss gr\x94\xE1 \ber als 1 sein. Geben sie die Tiefe erneut ein: "; + if(depth<2)std::cout << "ERROR: Die Zahl muss gr\x94\xE1 \ber als 1 sein. Gib die Tiefe erneut ein: "; }while(depth<2); + for(long long idx = 0; idx0) std::cout << "*"; std::cout << "\n"; } - - for(long long idx = 0; idx<2*depth-1; idx++) - { - std::cout << "*"; - } - + for(long long idx = 0; idx<2*depth-1; idx++) std::cout << "*"; for(long long idx = 0; idx> amount;