If without else?

As the title says, is it possible to have an if without an else? I am making a rock, paper, scissors program and the only way I could think of doing it is by using multiple 'if's.
You do not need to include an else statement, stand alone if statements are fine in the right situations.

If you are comparing the same variable to different values you normally want to use if/else if/else to save time though.
Thanks for the reply! That's very useful for my future programming endeavors!
Topic archived. No new replies allowed.