Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
75454 彭慕允 十进制小数转二进制 C++ Accepted 2 MS 272 KB 474 2024-05-26 18:05:06

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { double n; cin>>n; int z=n; double x=n-z; int b[32],cnt=0; while(z!=0) { int yu=z%2; b[cnt]=yu; cnt++; z/=2; } if(cnt==0) { cout<<0; } else { for(int i=cnt-1; i>=0; i--) { cout<<b[i]; } } if(x!= 0) { cout<<"."; } else { return 0; } for(int i=0; i<9; i++) { x=x*2; int xz=x; cout<<xz; x=x-xz; if(x==0) { break; } } return 0; }