Do-While Schleife ergänzt
This commit is contained in:
parent
a56fedb114
commit
c91ab2c265
1 changed files with 5 additions and 7 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Reference in a new issue