Created
May 21, 2019 22:10
-
-
Save Thiago4532/ca25a5e629d1ecad7a792d64e3e55fac 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 <vector> // Biblioteca que contem a estrutura vector | |
| using namespace std; | |
| int main() { | |
| vector<int> v1; // Declaracao de um vector do tipo int | |
| vector<double> v2; // Declaracao de um vector do tipo double | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment