fork download
  1. struct distance
  2. {
  3.  
  4. vector<double> x;
  5. vector<double> y;
  6. vector<double> z;
  7.  
  8. distance()
  9. : x(10000), y(10000), z(10000)
  10. { }
  11. };
  12.  
  13. int main() {
  14. distance old;
  15. old.x;
  16. return 0;
  17. }
Runtime error #stdin #stdout 0.02s 4980KB
stdin
Standard input is empty
stdout
Standard output is empty