Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Bad
- if (compare == true)
- Console.WriteLine(hand_cnt + " True");
- else
- {
- Console.WriteLine("False");
- break;
- }
- //Good
- if (compare == true)
- Console.WriteLine(hand_cnt + " True");
- else
- {
- Console.WriteLine("False");
- }
Advertisement
Add Comment
Please, Sign In to add comment