Skip to content

Commit

Permalink
Remoção de linhas desnecessárias
Browse files Browse the repository at this point in the history
  • Loading branch information
williamtorres1 authored Jun 22, 2018
1 parent 5c31430 commit 58bd15c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions código fonte/jogo do labirinto.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*******************************
* File: Saturn Project *
* Author: William Torres *
****************************** */#include <stdio.h>//Biblioteca p/ printf e putchar
****************************** */
#include <stdio.h>//Biblioteca p/ printf e putchar
#include <stdlib.h>//Biblioteca necessaria para gerar numeros aleatorios (passos e distribuicaoo das armadilhas, tochas e o tesouro
#include <conio.h>//Biblioteca para ler as teclas digitadas pelo usuario, com proposito de faze-lo percorrer o mapa(matriz)
#include <time.h>//Biblioteca para complementacao da funcao srand()
Expand Down Expand Up @@ -171,7 +172,6 @@ void movimentacao(int mapa1[][12])
x--;
mapa1[x][y] = 5;
mapa1[x+1][y] = 7;
mapa1[1][1]= 7;
}// fim do if cima

/* Já esse é o if para descer, seguindo a mesma lógica do anterior porém agora
Expand All @@ -182,7 +182,6 @@ void movimentacao(int mapa1[][12])
x++;
mapa1[x][y] = 5;
mapa1[x-1][y] = 7;
mapa1[1][1]= 7;
}// fim do if baixo

/* Esse é o if para ir para a esquerda como está
Expand All @@ -193,7 +192,6 @@ void movimentacao(int mapa1[][12])
y--;
mapa1[x][y] = 5;
mapa1[x][y+1] = 7;
mapa1[1][1]= 7;
}// fim do if esquerda

/* Esse é o último if, aponta para a direita, apenas mexemos no y aumentando-o */
Expand All @@ -202,7 +200,6 @@ void movimentacao(int mapa1[][12])
y++;
mapa1[x][y] = 5;
mapa1[x][y-1] = 7;
mapa1[1][1]= 7;
}
show_map(mapa1);
}
Expand Down

0 comments on commit 58bd15c

Please sign in to comment.