Files
python/LuoGu/RuMen/P5705.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

20 lines
317 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
float a;
cin >> a;
int b = int(a * 10);
bool first = true;
while (b) {
cout << b % 10;
if (first) {
cout << ".";
first = false;
}
b /= 10;
}
return 0;
}