PAT-A-1073-Scientific Notation

Scientific notation is the way that scientists easily handle very large numbers or very small numbers. The notation matches the regular expression [+-][1-9].[0-9]+E[+-][0-9]+ which means that the integer portion has exactly one digit, there is at least one digit in the fractional portion, and the number and its exponent’s signs are always provided even when they are positive.

Now given a real number A in scientific notation, you are supposed to print A in the conventional notation while keeping all the significant figures.

Input Specification:

Each input contains one test case. For each case, there is one line containing the real number A in scientific notation. The number is no more than 9999 bytes in length and the exponent’s absolute value is no more than 9999.

Output Specification:

For each test case, print in one line the input number A in the conventional notation, with all the significant figures kept, including trailing zeros.

Sample Input 1:

1
+1.23400E-03

Sample Output 1:

1
0.00123400

Sample Input 2:

1
-1.2E+10

Sample Output 2:

1
-12000000000

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <iostream>
#include <cstring>
using namespace std;

int main() {
char str[10000];
scanf("%s", str);

//E的位置
int ePos = 0;
while (str[ePos] != 'E')
ePos++;

int len = strlen(str);
if (str[0] == '-')
printf("-");

int exp = 0;
for (int i = ePos + 2;i < len;i++)
exp = exp * 10 + (str[i] - '0');

//特判指数为0
if (exp == 0) {
for (int i = 1;i < ePos;i++)
printf("%c", str[i]);
}

if (str[ePos + 1] == '-') {
printf("0.");
//添加的0的个数为exp-1
for (int i = 0;i < exp - 1;i++)
printf("0");
printf("%c",str[1]);
for (int i = 3;i < ePos;i++)
printf("%c", str[i]);
}
else {
for (int i = 1;i < ePos;i++) {
if (str[i] == '.')continue;
printf("%c", str[i]);
//i=小数点右移位数+2,且移位后的位置不在字符串的最后一个位置
if (i == exp + 2 && ePos - 3 != exp)
printf(".");
}
//添加剩下的0
for (int i = 0;i < exp - ePos + 3;i++)
printf("0");


}
return 0;
}

----\(˙<>˙)/----赞赏一下吧~