fork download
  1. #include <iostream>
  2. #include <array>
  3.  
  4.  
  5. using namespace std;
  6.  
  7. main(){
  8.  
  9.  
  10. array<double,3>preise;
  11.  
  12. preise.at(0) = 1.45;
  13. preise.at(1) = 0.85;
  14. preise.at(2) = 0.75;
  15.  
  16.  
  17.  
  18. cout << preise.at(0) << endl;
  19.  
  20.  
  21. }
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
1.45