A calculator. Similar to Ice calculator. x+y is the basic input format. Don't put spaces in it. + is for addition, - is for subtraction, * is for multiplication, and / is for division. Greater than and less than is also supported. *Numbers with decimals do not work correctly *Negative numbers do not work correctly
the project works by taking your input, putting the individual letters into a list. the project scans through the list for operations, and then sets operator one and two to the equivalent numbers. the project then determines what operation is used (currently only addition) and then adds operator 1 and operator 2. You can use this if you'd like to.