Chronusaon
4/18/2019 - 1:44 AM

C# Float

// 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);