为什么我会得到:非法的表达式开始-公共静态int noOfLetters(String str){error?我如何修复它?
public class Mmn15 {
public static int digInNumFor(int num, int dig) {
Scanner scan = new Scanner(System.in);
num = scan.nextInt();
dig = scan.nextInt();
int counter = 0;
for (counter = 0; num > dig;) {
if (num % 10 == dig); {
/** reduce num*/
num = num / 10;
counter++;
return counter;
}
// This part is where I get the error:
public static int noOfLetters(String str){
Scanner scan = new Scanner(System.in);
str = scan.nextLine();
String letter = 0;
int[] count = new int[letter];
/** Count array with frequency of characters
*/
int i;
for (i = 0; i < str.length(); i++)
if (str.charAt(i) != ' ')
count[(int) str.charAt(i)]++;
int n = i;
/** Prints the characters that are more than 0
*/
for (i = 0; i < n; i++)
if (count[(int) str.charAt(i)] == 1)
System.out.print(str.charAt(i));
}
}
}
}
public class Mmn15 {
public static int digInNumFor(int num, int dig) {
Scanner scan = new Scanner(System.in);
num = scan.nextInt();
dig = scan.nextInt();
int counter = 0;
for (counter = 0; num > dig;) {
if (num % 10 == dig) {
/** reduce num*/
num = num / 10;
counter++;
return counter;
}
// Method Body ends
}
public static int noOfLetters(){
Scanner scan = new Scanner(System.in);
String str = scan.nextLine();
int letter = 26;
int[] count = new int[letter];
/** Count array with frequency of characters
*/
int i;
for (i = 0; i < str.length(); i++)
if (str.charAt(i) != ' ')
count[str.charAt(i) - 'a']++;
int n = i;
/** Prints the characters that are more than 0
*/
for (i = 0; i < 26; i++)
if (count[(int) str.charAt(i)] >= 1)
System.out.print(str.charAt(i));
}
}
}
}
我不明白第77行不能从这个开始,但我用“public String showTrack()”开始了类似的内容。 这是我当前的代码:
我正在从其他框架生成一个JTabbedFrame。
我基本上是在精炼、完成并尝试从java初学者参考书中编译测试代码。目标是创建一个猜测游戏,其中目标位于3个连续的单元中(我在阵列中保留位置),用户猜测单元号以逐个单元摧毁目标单元。 我在这里查看了六篇关于同一个错误的帖子,但我不知道出了什么问题。 这是我的错误: 我的代码是:
喂!我开始学习编程,并从一个奇怪的计算器的方式开始(我知道它的奇怪我是如何做的)。但在这段小代码中,我遇到了Java的一个问题:表达式的非法开始是因为“if(numberTest.equals(+))”,但当我输入“if(numberTest==/)”时,也会出现一个错误。有没有帮助解决这个问题,因为我没有找到任何东西,不知道该搜索什么?(:祝你们今天愉快!保重!)
问题内容: 我基本上是在完善,完成并尝试从Java初学者的参考书中编译测试代码。目的是创建一个猜谜游戏,其中目标位于3个连续的单元格中(我将位置保持在数组中),而用户则猜测该单元格的编号。逐个摧毁目标细胞。 我在这里检查了六则关于同一错误的帖子,但我无法弄清楚出了什么问题。 这是我的错误: 我的代码是: 问题答案: 方法只能声明局部变量。这就是为什么当您尝试将其声明为public时,编译器会报告错