mám program na přihlašování a potřebuju aby tam jela nekonečná smyčka ale hází mi to 2 chyby poraďte kde mám chybu prosím.
C++:
#include <iostream.h>
#include <iostream>
main()
{
while (true)
{
int x;
cout << "vlozte ID: ";
cin >> x;
cout << "";
if (x >= 2)
cout << " toto ID neexistuje nema cenu vkladat";
cout << "";
int h;
cout << " osobni heslo: ";
cin >> h;
if (x >=2)
cout << "toto ID neexistuje";
if (x == 1)
if (h == 123)
cout << "welcome User ";
if (x == 1)
if (h == 123)
cout << "loading 20% loading 60% loading 100% ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ";
if (x == 1)
if (h == 123)
system("program.exe");
if (x == 1)
if (h != 123)
cout << "wrong password!";
int z;
cout << "pro vypnuti napis 9";
cin >> z;
if (z == 9)
breake;
}
return 0;
}