业精于勤,荒于嬉;行成于思,毁于随。
No exception occurred
float ever;
changed to
float ever = 0;
C++ variables will be randomly assigned if not initialized
ever must be initialized, otherwise it will be assigned a random value
ever is not initialized to 0
No exception occurred
changed to
C++ variables will be randomly assigned if not initialized
ever must be initialized, otherwise it will be assigned a random value
ever is not initialized to 0