fork download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. vector<float> v(3, 15);
  9. // your code goes here
  10. int n=int();
  11. std::cout<<v[1]<<std::endl;
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5496KB
stdin
Standard input is empty
stdout
15