我有一个我正在尝试做的简单问题。我正在尝试编写一个将这五个数字加倍的程序。然后我想计算这些数字的平均值并将它们打印出来。代码运行没有错误,但由于某种原因它不会打印我的答案。我怎样才能让它打印问题的输出或简单地打印一些东西?我正在使用 Netbeans。
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package marina;
/**
*
* @author bax
*/
public class Precedence {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
double grade1 = 100;
double grade2 = 75;
double grade3 = 88;
double grade4 = 65;
double grade5 = 99;
int x = (int) (grade1+grade2+grade3+grade4+grade5/5.0);
System.out.println(x);
}
}
输出:
run:
BUILD SUCCESSFUL (total time: 0 seconds)