// codigo para cambiar temporamente un Int por Float solo para hacer la divicion .
int score = 1000;
int totalSecondsPlayed = 10000;
// Carcular puntos por segundos .
float pointsPerSeconds = (float)score / totalSecondsPlayed;
Console.WriteLine("Points per Seconds: " + pointsPerSeconds);