Код: Выделить всё
public class Pie{
String flavour;
String type;
String size;
}
Затем я добавил основной метод. Итак, код выглядел так:
Код: Выделить всё
public class Pie{
public static void main(String[] args){
String flavour;
String type;
String size;
}
}
Подробнее здесь: https://stackoverflow.com/questions/183 ... r-expected