java简单除法小程序
2009-11-10 16:46:19 来源:WEB开发网核心提示:public class Div { /*** @param args*/ public static void main(String[] args) {// TODO Auto-generated method stubfloat x=1f;float y=1f;if(args.length>1){ try
public class Div {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
float x=1f;
float y=1f;
if(args.length>1)
{
try {
x=Float.parseFloat(args[0]);
y=Float.parseFloat(args[1]);
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
//e.PRintStackTrace();
System.out.println("格式不正确!!");
System.exit(-1);
}
if(y==0)
System.out.println("分母不能为零!!");
else
{
float res=x/y;
System.out.println(res);
}
}
}
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
float x=1f;
float y=1f;
if(args.length>1)
{
try {
x=Float.parseFloat(args[0]);
y=Float.parseFloat(args[1]);
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
//e.PRintStackTrace();
System.out.println("格式不正确!!");
System.exit(-1);
}
if(y==0)
System.out.println("分母不能为零!!");
else
{
float res=x/y;
System.out.println(res);
}
}
}
}
[]
更多精彩
赞助商链接