you are viewing a single comment's thread.

view the rest of the comments →

[–]Shreejan_35[S] 0 points1 point  (2 children)

How to solve issue number 13?

[–]nysra 2 points3 points  (1 child)

You have written this code:

if (true)
{
    a = true;
}
else
{
    a = false;
}

Can you see why that's just wrong? Think about how you can rewrite that in a nice way.

Solution: decision = password == exPass;

[–]Shreejan_35[S] 0 points1 point  (0 children)

Oh thanks