Código de Robocode
Código de Robocode
Cordial saludo
Profe no sé cómo compilarlo desde el juego así que adjunto el código en este Word
package Vz;
import robocode.*;
//import java.awt.Color;
/**
*/
/**
*/
// After trying out your robot, try uncommenting the import at the top,
// setColors(Color.red,Color.blue,Color.green); // body,gun,radar
while(true) {
// Replace the next 4 lines with any behavior you would like
ahead(300);
turnGunRight(360);
back(200);
turnGunRight(360);
/**
*/
// Replace the next line with any behavior you would like
fire(500);
/**
*/
// Replace the next line with any behavior you would like
back(30);
/**
*/
// Replace the next line with any behavior you would like
ahead(1000);
}