#include<bits/stdc++.h> using namespace std; int main(){ float a;cin>>a; int b,c,d,e,f; b=a*10; c=b%10; d=b/10%10; e=b/100%10; f=b/1000; cout<<c<<'.'<<d<<e<<f; return 0; }

0 comments

No comments so far...