0
点赞
收藏
分享

微信扫一扫

PAT甲级1073

cnlinkchina 2022-08-30 阅读 60


1073. Scientific Notation (20)


时间限制



100 ms



内存限制



65536 kB



代码长度限制



16000 B



判题程序



Standard



作者



HOU, Qiming


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 file 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.23400E-03


Sample Output 1:


0.00123400


Sample Input 2:


-1.2E+10


Sample Output 2:


-12000000000

#include<stdio.h>
#include<iostream>
#include<string>
#include<map>
#include<vector>
#include<set>
#include<algorithm>
using namespace std;

int main()
{
string s, s1,s2;
cin >> s; int exp = 0;
s1 = s.substr(1, s.find("E")-1);
s1.replace(1, 1, "");
s2 = s.substr(s.find("E")+1, s.size() - 1);
int i;

for (i = 1; i < s2.size(); i++)
{
exp += (s2[s2.size() - 1 - i + 1] - '0')*pow(10, i - 1);
}
if (s2[0] == '-')
{ exp = -exp;
}

if (s[0] == '-')
cout << '-';
if (exp < 0)
{
exp = -exp;
for (int i = 0; i < exp; i++)
{
cout << 0;
if (i == 0)
cout << ".";
}
cout << s1;
}
else
{
if (s1.size() > exp + 1)
{
s1.insert(exp + 1, ".");
cout << s1;
}
else
{
cout << s1;
for (int i = 0; i < exp + 1 - s1.size(); i++)
{
cout << 0;
}
}
}
return 0;
}



举报

相关推荐

0 条评论