one <= convert/1000; -- 5678/1000 = (5).678 -- Number 5
two <= (convert mod 1000)/100; -- 5678 mod 1000 = 678, and then 678/100 = (6).78 -- Number 6
three <= (convert mod 1000)/10; --  What is the outcome of this? 67.8, but what will display?

Do you not know how the modulus or / operators work? Please identify the source of your confusion.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.