Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 3, 2019 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/c26c33b551a89e38f09d7f40c91fa57d to your computer and use it in GitHub Desktop.
Save parzibyte/c26c33b551a89e38f09d7f40c91fa57d to your computer and use it in GitHub Desktop.
while (true) {
cout << "Escribe un numero o '=' para ver la suma:\n";
cin >> entrada;
if (entrada == "=") break;
sumatoria += stoi(entrada);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment