Effacer les filtres
Effacer les filtres

I want to make a program that saves the high score of the game.How should I programme?

2 vues (au cours des 30 derniers jours)
I want to make a program that saves the high score of the game.How should I code to do this? Thanks!

Réponse acceptée

Image Analyst
Image Analyst le 15 Déc 2014
Is it the kind of game where the score can only increase? Or can it ever decrease? Actually, it doesn't matter. Let's say you have an array called scores that keeps track of all scores - whenever there is a new score you add an element. The high score is just
highScore = max(scores);
To save that to a file, just use save():
save(matFillFileName, 'highScore');

Plus de réponses (1)

Star Strider
Star Strider le 12 Déc 2014
I don’t know what the game is, but I assume the score increases to the end. I would use the max function.

Catégories

En savoir plus sur Strategy & Logic dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by