You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
290 B

#include <bits/stdc++.h>
using namespace std;
double a;
int B;
int main() {
cin >> a;
b = a * 10;
int n = 0;
while (b) {
n++;
int c = b % 10;
b /= 10;
printf("%d", c);
if (n == 1) printf(".");
}
return 0;
}