15+曲文辉


私信TA

用户名:BoyHonest

访问量:35418

签 名:

等  级
排  名 302
经  验 5593
参赛次数 3
文章发表 52
年  龄 0
在职情况 学生
学  校 河南农业大学
专  业

  自我简介:

解题思路:





注意事项:





参考代码:



import java.util.Iterator;

import java.util.Scanner;


public class Main

{


public static void main(String[] args)

{

Scanner input = new Scanner(System.in);

while (input.hasNext())

{

String str = input.nextLine();

String[] word = str.split("\\.");

if (CheckEle.check(word))

{

System.out.println("Y");

} else

{

System.out.println("N");

}

}

}


}


class CheckEle

{

public static boolean check(String[] word)

{


for (String string : word)

{

if (!check(string))

{

return false;

}

}

return true;

}


public static boolean check(String s)

{

int n = 0;

try

{

n = Integer.valueOf(s);

} catch (Exception e)

{

return false;

}

return n <= 255 && n >= 0;

}

}


 

0.0分

0 人评分

  评论区

  • «
  • »