Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
75415 | 杨莹斌 | 十进制小数转二进制 | C++ | Accepted | 0 MS | 272 KB | 503 | 2024-05-26 17:34:33 |
#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; }