Skip to content

Instantly share code, notes, and snippets.

@Thiago4532
Created May 21, 2019 22:10
Show Gist options
  • Select an option

  • Save Thiago4532/ca25a5e629d1ecad7a792d64e3e55fac to your computer and use it in GitHub Desktop.

Select an option

Save Thiago4532/ca25a5e629d1ecad7a792d64e3e55fac to your computer and use it in GitHub Desktop.
#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