Created
May 21, 2019 22:18
-
-
Save Thiago4532/4783d18eccaaea0927268643892441a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stack> // Biblioteca da stack | |
using namespace std; | |
int main() { | |
stack<int> pilha; // Declaro a stack do tipo int | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment