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::cout << "Geben sie die Tiefe ein: ";
do
{
getline(std::cin, input);
std::stringstream(input) >> depth;
if(depth<2)
{
std::cout << "ERROR: Zahl muss größer als 1 sein.";
getchar();
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++)
{