fork download
  1. //Mia Agramon CS1A Chapter 11, P. 646, #6
  2. //
  3. /*******************************************************************************
  4.  * Soccer Scores
  5.  * _____________________________________________________________________________
  6.  * This program displays each soccer player's name, number, and points scored.
  7.  * It will also calculates and displays the toal points earned by the team.
  8.  *
  9.  * INPUT
  10.  * soccer player name
  11.  * soccer player number
  12.  * soccer player points scored
  13.  * OUTPUT
  14.  * soccer player name
  15.  * soccer player number
  16.  * soccer player points scored
  17.  * total points earned by the team
  18.  * player who earned the most points
  19.  ******************************************************************************/
  20.  
  21. #include <iostream>
  22. using namespace std;
  23.  
  24. int main()
  25. {
  26. //
  27. return 0;
  28. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
Standard output is empty