我正在为学校的一个项目设计代码,在编译以下代码时,我得到的唯一错误代码是标记“return”上的语法错误,需要字节。
static public int getMonthlyTotal(){
//Calulates utilities
int monthlyTotal = 0;
//Define imput streams
InputStreamReader input = new InputStreamReader(System.in);
BufferedReader reader = new BufferedReader(input);
monthlyTotal = (150 + 60 + 20 + 60 + 800);
}
return monthlyTotal;
2条答案
按热度按时间ql3eal8s1#
bf1o4zei2#
你给出的return语句超出了方法give的作用域,就像这样,它会工作的。