Advertisement
Guest User

Me ajuda dog :( ps: é a main.cpp

a guest
Oct 15th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdlib.h>
  3. using namespace std;
  4.  
  5. struct Coords{int x; int y;};
  6.  
  7. int main() {
  8.     int contadorx=0;
  9.     int contadory = 0;
  10.  
  11.     vector<Coords> pontos;
  12.    
  13.     pontos.push_back({ 0, 0 });
  14.     //pontos.push_back({ contadorx, contadory });
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement