Skip to content

Instantly share code, notes, and snippets.

View StephenBerkner's full-sized avatar
🎯
Focusing

Stephen Berkner StephenBerkner

🎯
Focusing
View GitHub Profile
@StephenBerkner
StephenBerkner / Rock Paper Scissors Game
Created August 15, 2014 04:29
Rock Paper Scissors Game in Python
# Made by Stephen Berkner
# Spring 2014
import random
print("Hello! Welcome to the Rock Paper Scissors Program!")
isWin = False
while isWin == False:
@StephenBerkner
StephenBerkner / RPN Calculator
Created September 2, 2014 03:31
Reverse Polish Notation Calculator Written in Java
import java.util.*;
public class RPNCalc {
private static Stack<Integer> stack = new Stack<Integer>();
private static Scanner input = new Scanner(System.in);
public static void calculator() throws Exception {
System.out.println("Welcome to the RPN Calculator program!");