/*PeriZoom Killer minimal robot by Ralph Seiler 73765,264. This minimal form of PZK wins in match play agains PeriZoom about 30% of the time. I wonder if there is a take home lesson in this for SDI (starwars). A complex robot like PeriZoom that wins against everything else can be destroyed by something simple. */ main() { int range; drive(90,100); while (1) { range = scan(270,5); if (range>5) { cannon(261,range);}}}  ÃÃÃÃÃÃÃÃÃÃ