fork(1) download
  1. #include <vector>
  2. using namespace std;
  3.  
  4. struct Day {
  5. vector<double> hour{vector<double>(24,-777) };
  6. };
  7. int main() {
  8. Day d;
  9. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
Standard output is empty