Do-While Schleife ergänzt

This commit is contained in:
Leaced 2017-04-05 13:45:29 +02:00 committed by GitHub
parent a56fedb114
commit c91ab2c265

View file

@ -8,15 +8,13 @@ int main()
std::string input; std::string input;
std::cout << "Geben sie die Tiefe ein: "; std::cout << "Geben sie die Tiefe ein: ";
getline(std::cin, input);
std::stringstream(input) >> depth;
if(depth<2) do
{ {
std::cout << "ERROR: Zahl muss größer als 1 sein."; getline(std::cin, input);
getchar(); std::stringstream(input) >> depth;
return(1); if(depth<2)std::cout << "ERROR: Die Zahl muss größer als 1 sein. Geben sie die Tiefe erneut ein: ";
} }while(depth<2);
for(long long idx = 0; idx<depth*depth; idx++) for(long long idx = 0; idx<depth*depth; idx++)
{ {