Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <utility>
  3. #include <map>
  4. #include <string>
  5.  
  6. int main(int argc, char** argv) {
  7.  
  8. std::map<std::string, float> finals = {
  9. {"Bromell", 10.06f},
  10. {"Simbine", 9.94f},
  11. {"Blake", 9.93f},
  12. {"DeGrasse", 9.91f},
  13. {"Meite", 9.96f},
  14. {"Vicaut", 10.04f},
  15. {"Bolt", 9.81f},
  16. {"Gatlin", 9.89f},
  17. };
  18.  
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement