return语句出现错误 非法类型的开始
publicclassFab{publicstaticvoidmain(string[]args){System.out.println(f(40));}publicst...
public class Fab { public static void main (string[] args) { System.out.println(f(40)); } public static long f(int index) { if(index < 1) { System.out.println("invalid parameter"); } if(index == 1 || index==2 ) { return 1; } long f1 = 1L; long f2 = 2L; long f = 0; for(int i=0; i<index-2; i++) f=f1+f2; f1=f2; f2=f; } return f; }}麻烦帮忙看下
展开
2018-01-13
展开全部
修改后的代码:
public class Fab {
public static void main (String[] args) { //String的S是大写
System.out.println(f(40));
}
public static long f(int index) {
if(index < 1) {
System.out.println("invalid parameter");
}
if(index == 1 || index==2 ) {
return 1;
}
long f1 = 1L;
long f2 = 2L;
long f = 0;
for(int i=0; i<index-2; i++) { //缺少一个括号
f=f1+f2;
f1=f2;
f2=f;
}
return f;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询