科学计数法

题目:
科学计数法是科学家用来表示很大或很小的数字的一种方便的方法,其满足正则表达式[+-][1-9]"."[0-9]+E[+-][0-9]+,即数字的整数部分只有1位,小数部分至少有1位,该数字及其指数部分的正负号即使对正数也必定明确给出。

现以科学计数法的格式给出实数A,请编写程序按普通数字表示法输出A,并保证所有有效位都被保留。

输入格式:

每个输入包含1个测试用例,即一个以科学计数法表示的实数A。该数字的存储长度不超过9999字节,且其指数的绝对值不超过9999。

输出格式:

对每个测试用例,在一行中按普通数字表示法输出A,并保证所有有效位都被保留,包括末尾的0。

#include 
#include 
#include 
using namespace std;
int main(){
    string s;
    cin >> s;
    int status1 = (s[0] == '+' ? 0 : 1);//判断第一个符号
    int status2 = (s[s.find("E") + 1] == '+' ? 0 : 1);
/*string.find()函数查找该字符串的位置*/
    string index_s = s.substr(s.find("E") + 2, s.size() - s.find("E") - 2);
/*string.substr(m,n-m)取string中m到n这一段字符串(不包括n)*/
    stringstream sstream;
    sstream << index_s;
    int index = 0;
    sstream >> index;//转换成数字
    string num_s = s.substr(1, s.find("E") - 1);

    if(status1 != 0){
        printf("%c", '-');
    }
    if(status2 == 1){
        for(int i = 0; i < index; ++i){
            printf("%c", '0');
            if(i == 0){
                printf("%c", '.');
            }
        }
        printf("%c", num_s[0]);
        for(int j = 2; j < num_s.size(); ++j){
            printf("%c", num_s[j]);
        }
        printf("%c", '\n');
    }
    else if(status2 == 0){
        printf("%c", num_s[0]);
        int count = 0;
        for(int k = 2; k < num_s.size(); ++k){
            if(count == index){
                printf("%c", '.');
            }
            printf("%c", num_s[k]);
            ++count;
        }
        for(int l = 0; l < index - count; ++l){
            printf("%c", '0');
        }
        printf("%c", '\n');
    }
    return 0;
}

代码摘自FlyRush

你可能感兴趣的:(科学计数法)