This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ================================================================ | |
| // GradeCalc — formuła obliczania oceny z punktów | |
| // Plik źródłowy: src/data/gradingSystems.ts | |
| // ================================================================ | |
| // Przykładowy system ocen (progi procentowe dla każdej oceny) | |
| const systemOcen = [ | |
| { ocena: '6', minPercent: 100, maxPercent: 100 }, | |
| { ocena: '6-', minPercent: 98, maxPercent: 99 }, | |
| { ocena: '5+', minPercent: 95, maxPercent: 97 }, |