Tic Documentos De Virtuanl Evidencias De Las Etapas
Enviado por itzeelcastillo20 • 10 de Mayo de 2015 • 347 Palabras (2 Páginas) • 777 Visitas
UNIVERSIDAD AUTONOMA DE NUEVO LEON
Preparatoria N°16
TIC 2 Introducción a la Programación y Robot Karel
Etapa 3: PROGRAMACION BASICA EN ROBOT KAREL
Evidencia de Aprendizaje 4.1: Mundo y Programa en Robot Karel “Entrega de paquetes”
Nombre: Itzel yamilee castillo hernandez.
Matricula: 1749180.
Grupo: 121
Mundo Inicial:
Mundo final:
Código del programa:
class program {
program() {
while (frontIsClear()) {
move();
while (nextToABeeper()) {
pickbeeper();
}
}
while (anyBeepersInBeeperBag()) {
putbeeper();
}
turnleft();
turnleft();
while (frontIsClear()) {
move();
}
turnoff();
}
}
UNIVERSIDAD AUTONOMA DE NUEVO LEON
Preparatoria N°16
TIC 2 Introducción a la Programación y Robot Karel
Etapa 3: PROGRAMACION BASICA EN ROBOT KAREL
Evidencia de Aprendizaje 4.1: Mundo y Programa en Robot Karel “Entrega de paquetes”
Nombre: Itzel yamilee castillo hernandez.
Matricula: 1749180.
Grupo: 121
Mundo Inicial:
Mundo final:
Código del programa:
class program {
program() {
while (frontIsClear()) {
move();
while (nextToABeeper()) {
...