Untitled
unknown
plain_text
3 years ago
630 B
43
Indexable
public class Praktikum {
public void printHarvest() {
String[] items = {"Картошка, мешки, 8", "Яблоки, ящики, 11.5", "Клубника, кг, 5.75"};
String potatoes = items[0];
String apples = items[1];
String strawberry = items[2];
String [] splitPotatoes = potatoes.split(",");
String [] splitApples = apples.split(",");
String [] splitStrawberry = strawberry.split(",");
System.out.printf("'%-10s'", splitPotatoes[0]);
// System.out.println(apples);
// System.out.println(strawberry);
}
}Editor is loading...