Guest User

Untitled

a guest
Apr 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. bool encontre = false;
  2.  
  3. for (int i = 1; i <= 48; i++)
  4. {
  5. encontre = true;
  6. Console.ForegroundColor = ConsoleColor.White;
  7. for (int x= 0; x < tope; x++)
  8. {
  9. encontre = false;
  10. for (int z = 0; z < 5; z++)
  11. {
  12. if (matriz[x, z] == i)
  13. {
  14. encontre = true;
  15. }
  16. }
  17. }
  18. if (encontre == false)
  19. {
  20.  
  21. }
  22. }
Add Comment
Please, Sign In to add comment