Skip to content

Instantly share code, notes, and snippets.

View tomlegodais's full-sized avatar
👨‍💻
Compiling...

Tom LeGodais tomlegodais

👨‍💻
Compiling...
View GitHub Profile
@tomlegodais
tomlegodais / RPN Calculator.cpp
Created April 27, 2017 00:33
Rpn Calculator (Revised)
//
// Created by Tom LeGodais on 4/19/2017.
//
#include "stdafx.h"
#include <iostream>
#include "RPN Calculator.h"
int main() {
std::istream &in = std::cin;
while (running && !in.eof()) {
"C:\Users\Tom LeGodais\CLionProjects\rpncalc\cmake-build-debug\rpncalc.exe"
Please enter a command/function:5 1 2 + 4 * + 3 -
5 1 2 + 4 * + 3 -
5 OPERAND [5]
1 OPERAND [1, 5]
2 OPERAND [2, 1, 5]
+ OPERATOR [3, 5]
4 OPERAND [4, 3, 5]
* OPERATOR [12, 5]