Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <fstream>
  3. #include <vector>
  4.  
  5. struct point
  6. {
  7.     double x, y;
  8. };
  9.  
  10. int main()
  11. {
  12.     std::ifstream input("in.txt");
  13.     std::ofstream output("out.txt");
  14.  
  15.     vector <point> points;
  16.     while (input >> x >> y)
  17.     {
  18.  
  19.     }
  20.  
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement