14. 30. 26. Make it vertical and move bottom-to-top
import javax.swing.JSlider;
public class Main { public static void main(String[] argv) throws Exception {
JSlider slider = new JSlider();
slider.setOrientation(JSlider.VERTICAL);
slider.setInverted(false);
}
}