#include
#include
using namespace std;
int main(int argc, char *argv[])
{
float i=3.12345,b;
int a=(int)i;
b=i-a;
string str1,str2;
char s[12];
itoa(a,s,10);
str1=s;
char ctr[10];
gcvt(b,6,ctr);
str2=ctr;
str2 =str2.erase(0,2);
string c=str1+str2;
cout<return 0;
}