java中判断输入的数是实数还是 整数
答案:1 悬赏:50 手机版
解决时间 2021-12-25 19:31
- 提问者网友:美人性情
- 2021-12-24 22:25
java中判断输入的数是实数还是 整数
最佳答案
- 五星知识达人网友:末日狂欢
- 2021-12-24 23:18
//整数
public static boolean isInt(String input) {
return input.matches("\\d+");
}
//实数
public static boolean isFloat(String input) {
return input.matches("\\d+\\.\\d*");
}
public static boolean isInt(String input) {
return input.matches("\\d+");
}
//实数
public static boolean isFloat(String input) {
return input.matches("\\d+\\.\\d*");
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯