python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Could somebody help me normalize a function block?
Recently I've got to write a code that allows to log a human readable number to console (e.g. seventy four, one hundred twelve...)
I should admit that everything worked out fine, but it's told that I ...

alexeyPetrov92
Votes: 0
Answers: 2
Decimal value issue
I've got a really annoying task to do, and stuck with it.
So: I need to write a function which gives back the value of a floating number after the decimal.
For example: the param would be:5.456-> a...

Ballazx
Votes: 0
Answers: 3
javascript remove leading zeros from a number
const a = 043
console.log(Number(a))
Here the variable a is octal because of which we get the result as 35.
Instead, I want the variable a to be a number 43.
Found results for removing l...
SB Praveen
Votes: 0
Answers: 1
How to format number in a floating representation, dependent on places before the decimal point in C#?
How do I format a number into a string so that the number of digits after the decimal point depends on the number of digits before the decimal point?
The aim is to output a number in a human-friendly ...

Philipp Ape
Votes: 0
Answers: 1