保存局部变量 - Java
Saving local variables - Java
这是一个程序,用于找出数字序列是否与整数范围内 b 和 c 的任意组合的数学公式 a[n+1] = a[n]*b+c 匹配-9:9.
import java.util.Scanner;
public class Nastaord{
private static int[] lasTal(){
int[] tallista; //Det vi ska ha talföljden i
int i = 0; //räknare för tallista
while(true){
System.out.print("Ange tal, eller tryck enter om du är klar: ");
int nytt_tal = scanner.nextLine();
if(nytt_tal == ""){
return tallista;}
tallista[i] = nytt_tal;
i++;
}
}
private static boolean bcFinns(int[] tallista){
boolean OK = true;
for(int b = -9; b <= 9; b++){
for(int c = -9; c <= 9; c++){
for(int i = tallista.length; i > 0;i--){
OK = tallista[i] == tallista[i-1]*b+c;
if(OK == false){
break;}
}
if(OK == true){
public int b = b;
public int c = c;
return true;}
}
}
return false;
}
public static void main(String[] args){
boolean OK = bcFinns(lasTal());
if (OK == true){
System.out.print(tallista[tallista.length-1]*b+c);
}
if (OK == false){
System.out.print("No");
}
}
}
该程序在主要层面上有效。唯一的问题是,一旦找到序列,我不知道如何为序列保存正确的数字 b 和 c。我尝试创建两个 public 变量,以便我可以在 main 方法中访问它们,但出现以下错误:
Nastaord.java:30: error: illegal start of expression
public int b = b;
^
Nastaord.java:31: error: illegal start of expression
public int c = c;
你能帮我以某种方式保存这些变量 b 和 c 吗?
public class Nastaord{
public static int bFinal,cFinal;
然后:
bFinal = b;
cFinal = c;
这是一个程序,用于找出数字序列是否与整数范围内 b 和 c 的任意组合的数学公式 a[n+1] = a[n]*b+c 匹配-9:9.
import java.util.Scanner;
public class Nastaord{
private static int[] lasTal(){
int[] tallista; //Det vi ska ha talföljden i
int i = 0; //räknare för tallista
while(true){
System.out.print("Ange tal, eller tryck enter om du är klar: ");
int nytt_tal = scanner.nextLine();
if(nytt_tal == ""){
return tallista;}
tallista[i] = nytt_tal;
i++;
}
}
private static boolean bcFinns(int[] tallista){
boolean OK = true;
for(int b = -9; b <= 9; b++){
for(int c = -9; c <= 9; c++){
for(int i = tallista.length; i > 0;i--){
OK = tallista[i] == tallista[i-1]*b+c;
if(OK == false){
break;}
}
if(OK == true){
public int b = b;
public int c = c;
return true;}
}
}
return false;
}
public static void main(String[] args){
boolean OK = bcFinns(lasTal());
if (OK == true){
System.out.print(tallista[tallista.length-1]*b+c);
}
if (OK == false){
System.out.print("No");
}
}
}
该程序在主要层面上有效。唯一的问题是,一旦找到序列,我不知道如何为序列保存正确的数字 b 和 c。我尝试创建两个 public 变量,以便我可以在 main 方法中访问它们,但出现以下错误:
Nastaord.java:30: error: illegal start of expression
public int b = b;
^
Nastaord.java:31: error: illegal start of expression
public int c = c;
你能帮我以某种方式保存这些变量 b 和 c 吗?
public class Nastaord{
public static int bFinal,cFinal;
然后:
bFinal = b;
cFinal = c;