I just like to use goto but this one is getting the program kinda bugged when i try to go back (pressing 'b' through menu) on the line 96, of this code: https://godbolt.org/z/jbnr8n6bn
You gotta try to run the menu until after it reaches the sum loop and then you wanna go back by pressing 'b' to test.
so, there is a plenty of exemples where it goes back through other gotos but this one goes back and print while executing the entire code all together. Remember that the functionality of the program to test doesn't go beyond calculator and sum, yet.
using namespace std;
int main()
{
float n1, n2, n3, res, num;
char op, op2;
string c, q, b, choice, choice2, choice3;
string tup = "Welcome to the average math problem solver / calculator menu, the following features you will be able to use is: ";
backward0:
cout << "\n" << endl;
system ("color 4F");
//MENU
backward1:
transform(tup.begin(), t...