由于找不到符号,因此无法执行

This can´t be executed since there is a symbol not found

我遇到了麻烦,因为它找不到符号。如果有人知道哪里出了问题,我会很高兴。

public class MartialArtist{  
public static void main(String[] args){
double HP=100;
int Strength=10;
double dmg=0;    
}
public static double Firepunch(int Strength,double dmg){
dmg=Strenght*1.5;    
return dmg;
}
public static double Firekick(int Strength,double dmg){
dmg=Strength*1.8;

return dmg;
}
public static double Tackle(int Strength,double dmg){
dmg=Strength*1.6;

return dmg;
}
}

您的代码有错别字:

strenght应该改成strength