import java.io.*; public class K4 { /** * @param args */ public static void main(String[] args) throws IOException{ // TODO 自動生成されたメソッド・スタブ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); double[] data = new double[10]; int n = data.length; System.out.println("10個の正の値を入力して下さい"); for(int i = 0;i
↧