I want write a java program
Problem:
I have property file, in the property file contains
range="1,5,35-50,100"
I should get the input as range from command prompt or JSP and print out message likes this is a range or this is not a range
let us consider following I/O should be looks like
Input:1
Output:this is a range
Input:2
Output:this is not a range
Input:37
Output:this is a range
Input:60
Output:this is not a range
Input:100
Output:this is a range
can anybody help me, advance in thanks