fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int puntajes[5] = {95, 88, 72, 91, 84};
  5.  
  6. std::cout << "Puntaje en la posicion 0: " << puntajes[0] << std::endl;
  7. return 0;
  8. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Puntaje en la posicion 0: 95