阅读下列程序说明和程序,在每小题提供的可选答案中,挑选一个正确答案 【程序说明】 程序运行接受用户输入的 10 个实数,输出其中的最大实数。 运行示例 [ 输入】 87.8 7.6 83 72 89 91.2 77 0.76 72 7.52 [ 输出】 91.2 【程序】 (1) ; class Main{ public static void main(String[] args){ Scanner kb=new Scanner(System.in); double max,grade,t; (2) ; for(int i=1;i<10;i++){ (3) =kb.nextDouble(); if(grade>max){ (4) ; } } System.out.printf("%.1f",max); } } 请挑选正确答案(2) 【供选择的答案】