static float Afloat(String str)
{
float a;
try
{
a=Integer.parseInt(str);
return a;
}
catch(Exception e)
{
System.out.println("您输入错误,请您输入1~12之间的数字");
return -1;
}
}
static float Cfloat(String str)
{
float a;
try
{
a=Integer.parseInt(str);
return a;
}
catch(Exception e)
{
System.out.println("您输入错误,请您输入1~12之间的数字");
return -1;
}
}
}
为什么写了两个啊