fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Hoge{
  5. public:
  6. int vel;
  7. int x;
  8. int y;
  9. int z;
  10. };
  11.  
  12. int main() {
  13. Hoge hoge = {
  14. .vel = 111,
  15. .x = 123,
  16. .y = 3142,
  17. .z = 31435,
  18. };
  19. // your code goes here
  20. return 0;
  21. }
Success #stdin #stdout 0s 4364KB
stdin
Standard input is empty
stdout
Standard output is empty