PAT 1073. Scientific Notation (20) 字符串处理

来源:互联网 发布:list<map>转json 编辑:程序博客网 时间:2024/06/01 20:06

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 <iostream>#include<stdio.h>#include<vector>#include<set>#include<map>#include<ctype.h>#include<string>#include<string.h>#include<iomanip>#include<algorithm>#include<stdlib.h>using namespace std;int main(){   string a;   cin>>a;   int pe=2;   int flag=0;   while(a[pe]!='E') pe++;   if(a[pe+1]=='-') flag=1;   char b[10];   int p=0;   for(int i=pe+2;i<a.size();i++)          b[p++]=a[i];          b[p]=0;        int e=atoi(b);     if (e==0)     {         if(a[0]=='-') cout<<a[0];         for(int i=1;i<pe;i++)            cout<<a[i];         return 1;     }    if(flag==1)    {        if(a[0]=='-') cout<<'-';        cout<<"0.";        e--;        while(e>0)        {   e--;            cout<<'0';        }        cout<<a[1];        for(int i=3;i<pe;i++)         cout<<a[i];    }    else    {        if(a[0]=='-') cout<<'-';        cout<<a[1];        int p=3;        while(e>0&&p<pe)         {           cout<<a[p];           e--;           p++;    }       if(e==0&&p<pe)       {          cout<<'.';          for(int i=p;i<pe;i++)         cout<<a[i];       }      if(p==pe&&e>0)      {         while(e>0)        {          cout<<'0';          e--;        }      }    }  return 0;}


原创粉丝点击