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::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++)
|
||||||
{
|
{
|
||||||
|
|
Reference in a new issue