Answer:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter an integer");
int num = input.nextInt();
int i=1;
while( i*num < 100) {
System.out.println(i*num);
i++;
}
input.close();
}
}
Explanation:
If you want the value 100 to be included, change the < to <=.