看板 ZooStudy 關於我們 聯絡資訊
// hw3_2.java import javax.swing.JOptionPane; public class hw3_2{ public static void main(String args[]){ String input = JOptionPane.showInputDialog("Enter a double number : "); double a = Double.parseDouble(input); //double a = 77.5; if(a>100) {System.out.println("100");} else if(a<0) {System.out.println("0");} else {System.out.println( (int)(a+0.5) );} // System.exit(0); } } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.112.7.59