I want to print amount like 2523525252.025
when I using double data type it's changed in 2.523525252025E9
how can fix?
Example -
Double saleprice=145236.12;
int itemqountity=1500;
Double totalamount= saleprice*itemqountity;
Log.e("totalamount",""+totalamount);
output-
E/totalamount: 2.1785418E8