Hi,
i have an integer value
Integer value = 56472201 ; (This could be some time (-17472201) with negetive Integer)
I want this value in this form 56.472201 (i mean if i divide this value/1000000 i get it in general 56.472201) but this does not works in programming as it give the quotient. I want both quotient and remainder in thsi form 56.472201.
Looking for Java solution
thanks.