Answer:
Concept: Programming
See the solution below:
import java.util.Scanner;
import java.lang.Math;
class Lesson_24_Activity_Three {
public static void main(String[] args){
Scanner scan = new Scanner(System.in); System.out.println ("Enter a number between 0 and 100:");
int x = scan.nextInt();
if ( x <= 0 || x >= 100) { System.out.println("error");
}
else
{
for (int i = x; i <= 100; i ++)
{
System.out.print( i + " ");
}
}
}
}