用正则表达式判断从键盘输入的字符串为年龄并输出判断结果
答案:1 悬赏:40 手机版
解决时间 2021-12-22 17:03
- 提问者网友:欺烟
- 2021-12-21 20:52
用正则表达式判断从键盘输入的字符串为年龄并输出判断结果
最佳答案
- 五星知识达人网友:痴妹与他
- 2021-12-21 21:09
import java.util.Scanner;
public class YuGiOh
{
public static void main ( String[] args )
{
String regex = "^[1-9]\\d*$";
Scanner scanner = new Scanner (System.in);
while (scanner.hasNextLine ())
{
String line = scanner.nextLine ();
if (line.matches (regex))
{
System.out.println ("年龄正确");
}
else
{
System.err.println ("年龄错误");
}
}
}
}
public class YuGiOh
{
public static void main ( String[] args )
{
String regex = "^[1-9]\\d*$";
Scanner scanner = new Scanner (System.in);
while (scanner.hasNextLine ())
{
String line = scanner.nextLine ();
if (line.matches (regex))
{
System.out.println ("年龄正确");
}
else
{
System.err.println ("年龄错误");
}
}
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯