fork download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4. using namespace std;
  5.  
  6. template <typename T>
  7. struct Coor
  8. {
  9. vector<T> points;
  10. Coor() : points(7788,0){}
  11. };
  12.  
  13. template<typename T>
  14. void Algorithm(Coor<T> &coor, size_t idx)
  15. {
  16. func(coor.points[idx]);
  17. }
  18.  
  19. template<typename T>
  20. void func(T &axie)
  21. {
  22. axie += 5566;
  23. }
  24.  
  25. int main()
  26. {
  27. Coor<int> coor;
  28. int i;
  29. cin >> i;
  30. Algorithm(coor, i);
  31. return 0;
  32. }
Runtime error #stdin #stdout 0.02s 2840KB
stdin
Standard input is empty
stdout
Standard output is empty