package com.javarush.task.task03.task0307;

/*
Привет Starcraft!
*/

public class Solution {
    public static void main(String[] args) {
      int i = 1;
      if (i<= 10){
          Zerg zerg = new Zerg();
          zerg.name = zerg+i;
          i = i+1;
      }
      int q = 1;
      if (q<= 5){
          Zerg zerg = new Zerg();
          zerg.name = zerg+q;
          q = q+1;
      }
      int w = 1;
      if (w<= 12){
          Zerg zerg = new Zerg();
          zerg.name = zerg+w;
          w = w+1;
      }
    }
      //напишите тут ваш код
}

    public static class Zerg {
        public String name;
    }

    public static class Protoss {
        public String name;
    }

    public static class Terran {
        public String name;
    }
Выдается class Zerg is public, should be declared in a file named Zerg.java: Solution.java, line: 31, column: 19 class Protoss is public, should be declared in a file named Protoss.java: Solution.java, line: 35, column: 19 class Terran is public, should be declared in a file named Terran.java: Solution.java, line: 39, column: 19 Спасибо)