2020-03-17

1073 Scientific Notation(20分)

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

      
    

Sample Output 1:

0.00123400

      
    

Sample Input 2:

-1.2E+10

      
    

Sample Output 2:

-12000000000
#include<iostream>
#include<string>
#include<math.h>
using namespace std;
int main(){
    string str;
    char symbol;//symbol标志正负 
    scanf("%c",&symbol);
    cin>>str;
    int length = str.length();
    int index=0;
    //找到E的位置,index+1是次数符号 
    while(1){
        if(str[index]=='E'){
            break;
        }
        index++;
    }
    string t = str.substr(index+2); 
    int tLength = t.length();
    int num = 0;
    int id = 0;
    for(int i=tLength-1;i>=0;--i){
        num += (t[i]-'0')*pow(10,id++);
    }
    if(str[index+1]=='-')
        num = -num;
    if(symbol=='-')
        printf("-");
    if(num<0){
        num = abs(num);
        printf("0.");
        for(int i=0;i<num-1;++i){
            printf("0");
        }
        for(int i=0;i<index;++i){
            if(str[i]=='.')
                continue;
            printf("%c",str[i]);
        }
        printf("\n");
    }else{
        printf("%c",str[0]);
        if(index-2<=num){
            for(int i=2;i<index;++i){
                printf("%c",str[i]);
            }
            for(int i=index;i<num+2;++i){
                printf("0");
            }
        }
        else{
            //不用补零的情况
            for(int i=2;i<num+2;++i){
                printf("%c",str[i]);
            }
            printf("."); 
            for(int i=num+2;i<index;++i){
                printf("%c",str[i]);
            }
        }
    }   
    return 0;
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • pyspark.sql模块 模块上下文 Spark SQL和DataFrames的重要类: pyspark.sql...
    mpro阅读 13,143评论 0 13
  • 这一章讲的比特币的交易记录的细节。通过这一章你可以理解,比特币的交易是采用什么样的组织形式构成的,同时也可以看到,...
    Scalers阅读 6,700评论 1 3
  • Introduction What is Bowtie 2? Bowtie 2 is an ultrafast a...
    wzz阅读 11,164评论 0 5
  • 放凉的糖水 渐干的皮肤 燥乱的心意 拼凑成这样一个秋 可等什么呢 城市不结果子 急不可奈地 想要步入冬天了
    萧陌阅读 884评论 0 2
  • 枯木萧萧留余绿, 行色匆匆多路人。 攸而北风寒大地, 时光不肯与风同。
    远方小壹阅读 981评论 0 3