zoukankan      html  css  js  c++  java
  • PAT甲级——A1073 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.23400E-03
    

    Sample Output 1:

    0.00123400
    

    Sample Input 2:

    -1.2E+10
    

    Sample Output 2:

    -12000000000

     1 #include <iostream>
     2 #include <string>
     3 using namespace std;
     4 int main()
     5 {
     6     string str, f1, num1, num2, f2, num3, res = "";
     7     cin >> str;
     8     int nDot, E, Exp = 0;
     9     f1 = str[0];
    10     nDot = str.find('.');
    11     num1 = str[nDot - 1];//第一位数字
    12     E = str.find('E');
    13     num2.assign(str.begin() + nDot + 1, str.begin() + E);//小数点后面的数字
    14     f2 = str[E + 1];
    15     num3.assign(str.begin() + E + 2, str.end());//指数
    16     for (int i = 0; i < num3.length(); ++i)//计算指数
    17         Exp = Exp * 10 + num3[i] - '0';
    18     if (f1 == "-")
    19         res += "-";
    20     if (f2 == "-")
    21     {
    22         res += "0.";
    23         res.insert(res.end(), Exp - 1, '0');//中间插入0
    24     }
    25     else if (f2 == "+")
    26     {
    27         if (num2.length() <= Exp)//小数位不足,则直接末尾加0;
    28             num2.insert(num2.end(), Exp - num2.length(), '0');
    29         else//小数位多余幂次,则小数点后移
    30             num2.insert(num2.begin() + Exp, 1, '.');
    31     }
    32     res += num1 + num2;
    33     cout << res << endl;
    34     return 0;
    35 }
  • 相关阅读:
    跨平台加密版 SQLite 3 wxSQLite3
    jQuery2011年年度最佳插件
    jQ中文API离线版下载(适用版本1.4.4,1.5,1.5.1,1.5.2,1.6,1.6.1,1.6.2)
    sql2000无法执行查询及未找到提供程序解决办法
    哈里斯Harris发射机状态监控和控制
    vs2019 最近的项目 所在文件
    QT从入门到入土 vs2019+qt插件
    Asp.Net WebApi swagger使用教程
    Nport 5110 资料
    C/C++ Qt 图形化开发
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11313511.html
Copyright © 2011-2022 走看看