Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@vicimpa/rubles ошибка в суммах #7

Open
DarkTraveler opened this issue Jan 23, 2025 · 1 comment
Open

@vicimpa/rubles ошибка в суммах #7

DarkTraveler opened this issue Jan 23, 2025 · 1 comment

Comments

@DarkTraveler
Copy link

По итогам тестирования, выявлены проблемы в вариантах с суммами 112, 113,114 тысяч и все вариации 212, 313 и т.д именно в этих числах не верно склоняет слово тысяча.

214623.94 Двести четырнадцать тысячи шестьсот двадцать три

Image

@DarkTraveler
Copy link
Author

Пока тестирую такой вариант:

function counterWord(input, counter) {
    const lastTwo = counter % 100;
    const units = counter % 10;
    
    if (lastTwo >= 10 && lastTwo <= 19) {
        return joinWord(input, 0); // "тысяч"
    }

    // Проверяем единицы
    if (units === 1) {
        return joinWord(input, 1); // "тысяча"
    }
    if (units >= 2 && units <= 4) {
        return joinWord(input, 2); // "тысячи"
    }

    return joinWord(input, 0); // "тысяч"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant