Double to string and change digits to 2,It's possible?

 
Hello!

I have this double :12.000004 and i would make this:12.00.
I would this as integer.I see Digits function but i can not solved this problem.



Thanks for help!

Sorry for my english.
 

double a = 12.0000004

int b = a;

 
Thanks for your answer!
Reason: