poj1131 Octal Fractions

Octal Fractions
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 5354   Accepted: 2900

Description

Fractions in octal (base 8) notation can be expressed exactly in decimal notation. For example, 0.75 in octal is 0.953125 (7/8 + 5/64) in decimal. All octal numbers of n digits to the right of the octal point can be expressed in no more than 3n decimal digits to the right of the decimal point.

Write a program to convert octal numerals between 0 and 1, inclusive, into equivalent decimal numerals.

Input

The input to your program will consist of octal numbers, one per line, to be converted. Each input number has the form 0.d1d2d3 ... dk, where the di are octal digits (0..7). There is no limit on k.

Output

Your output will consist of a sequence of lines of the form

0.d1d2d3 ... dk [8] = 0.D1D2D3 ... Dm [10]


where the left side is the input (in octal), and the right hand side the decimal (base 10) equivalent. There must be no trailing zeros, i.e. Dm is not equal to 0.

Sample Input

0.75
0.0001
0.01234567

Sample Output

0.75 [8] = 0.953125 [10]
0.0001 [8] = 0.000244140625 [10]
0.01234567 [8] = 0.020408093929290771484375 [10]
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;

string a;
int numb[ 101 ];
int midm[ 101 ];

int main()
{
while ( getline(cin,a,'\n') )
{
memset( midm , 0 , sizeof( midm ) );
int len = a.length()-1;
int count = 0;

for ( int i = 2 ; i <= len ; ++ i )
numb[ count ++ ] = a[ i ] - '0';

for ( int j = count-1 ; j >= 0 ; -- j )
{
midm[ 0 ] += numb[ j ];
for ( int i = 0 ; i <= 100 ; ++ i )
{
midm[ i+1 ] += ( midm[ i ]%8 )*10;
midm[ i ] /= 8;
}
}

int end;
for ( int i = 100 ; i >= 0 ; -- i )
{
if ( midm[ i ] != 0 )
{
end = i;
break;
}
}
cout << a <<" [8] = "<< midm[ 0 ] << ".";

for ( int i = 1 ; i <= end ; ++ i )
cout << midm[ i ];

cout << " [10]" << endl;
}
}

posted @ 2011-11-21 09:55  w0w0  阅读(194)  评论(0)    收藏  举报