so I'm back with a new question which is the following: I need to calculate the factorial of a user-input, now my problem is that I can't find any code nor explanation on how to do something like this, I also saw a topic on Stackoverflow but it didn't help me any further and I don't know where to start the only thing I have is the following:
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String invoer;
System.out.print("Fill in a Number:");
invoer = br.readLine();
}
so that's not much, I hope u guys can help me out!
Kind Regards, Mikey