Answer:
//begins
var int product = 0;
while (product < 100) {
product = enterNumber();
product = product*10;
}
//ends
This is the pseudo code of the while loop that accomplish the condition.
Explanation:
If you want to do it in Java for example, then you have to import the class Scanner first:
//begins
import java.util.Scanner;
Scanner keyboard = new Scanner(System.in);
while (product < 100) {
int product = keyboard.nextInt();
product = product*10;
}
//ends
Important: Have to set the variable product = 0 before it enters on the while loop.