Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,181 questions

56,073 answers

573 users

How to get the first digit of a float number in Kotlin

1 Answer

0 votes
//
// This program demonstrates how to extract the first digit
// of a floating‑point number in a clear and expressive way.
//
// Approach:
// - Convert the float to a string using toString().
// - Trim whitespace.
// - If the number is negative, skip the leading '-' sign.
// - Read the first numeric character.
// - Convert that character back into an integer.
//


/**
 * Returns the first digit of a floating‑point number.
 * Works for both positive and negative values.
 */
fun firstDigit(value: Double): Int {
    val text: String = value.toString().trim()

    // Skip the leading '-' for negative numbers
    val firstChar: Char =
        if (text.startsWith("-")) text[1]
        else text[0]

    // Convert the character to an integer
    return firstChar.digitToInt()
}

/**
 * Main execution block.
 */
fun main() {
    val f: Double = 376.287152

    val digit: Int = firstDigit(f)

    println(digit)
}



/*
run:

3

*/

 



answered 2 days ago by avibootz
...