浏览 2865 次
该帖已经被评为隐藏帖
|
|
---|---|
作者 | 正文 |
发表时间:2007-08-05
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class CompareBigNum { public static void main(String[] args) throws IOException { int max; String max1="0"; String reg = "^[-+0-9.]*$"; int a = 0,b=0,c=0; BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); if(a>b){ max=a; } else max=b; if(max<c){ max=c; } while(true){ System.out.println("请输入要比较的数字:"+"\n"+"-->"); String input = reader.readLine(); if(input.equals("q")||input.equals("exit")){ System.exit(0); } if(input.matches(reg)){ System.out.println("正确的数字"); }else{ System.out.println("不是数字,请输入数字 "); } } } } 不知该怎么写,请补充一下 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |