codeforces #362(div.2)B. Barnicle【模拟】

本篇博客介绍了一种将科学计数法转换为十进制表示的方法,并通过示例展示了如何进行准确转换。特别关注了在编程中如何处理这种转换,包括一些容易出错的数据情况。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

B. Barnicle
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Barney is standing in a bar and starring at a pretty girl. He wants to shoot her with his heart arrow but he needs to know the distance between him and the girl to make his shot accurate.

Barney asked the bar tender Carl about this distance value, but Carl was so busy talking to the customers so he wrote the distance value (it's a real number) on a napkin. The problem is that he wrote it in scientific notation. The scientific notation of some real number x is the notation of form AeB, where A is a real number and B is an integer and x = A × 10B is true. In our case A is between 0 and 9 and B is non-negative.

Barney doesn't know anything about scientific notation (as well as anything scientific at all). So he asked you to tell him the distance value in usual decimal representation with minimal number of digits after the decimal point (and no decimal point if it is an integer). See the output format for better understanding.

Input

The first and only line of input contains a single string of form a.deb where ad and b are integers and e is usual character 'e' (0 ≤ a ≤ 9, 0 ≤ d < 10100, 0 ≤ b ≤ 100) — the scientific notation of the desired distance value.

a and b contain no leading zeros and d contains no trailing zeros (but may be equal to 0). Also, b can not be non-zero if a is zero.

Output

Print the only real number x (the desired distance value) in the only line in its decimal notation.

Thus if x is an integer, print it's integer value without decimal part and decimal point and without leading zeroes.

Otherwise print x in a form of p.q such that p is an integer that have no leading zeroes (but may be equal to zero), and q is an integer that have no trailing zeroes (and may not be equal to zero).

Examples
input
8.549e2
output
854.9
input
8.549e3
output
8549
input
0.33e0
output
0.33

题目大意:输入科学计数法的数,然后对应输出数字。


思路:


对于这种坑爹模拟题,小心各种坑点即可。


容易Wa的两组数据:

0.0000007e2==0.00007

3.0e1=3


Ac代码:


#include<stdio.h>
#include<string.h>
using namespace std;
char a[100000];
char ans[100000];
int main()
{
    while(~scanf("%s",a))
    {
        int i;
        int n=strlen(a);
        for(i=0;i<n;i++)
        {
            if(a[i]=='e')break;
        }
        int tmp=0;
        for(int j=i+1;j<n;j++)
        {
            tmp=tmp*10+a[j]-'0';
        }
        int judge=0;
        if(a[0]!='0')
        {
            printf("%c",a[0]);
            judge=1;
        }
        if(a[0]=='0'&&tmp==0)
        {
            printf("%c",a[0]);
            judge=1;
        }
        int cont=2;
        while(1)
        {
            if(a[cont]=='e')cont++;
            if(tmp==0)break;
            if(cont>i)printf("0");
            else
            {
                if(judge==0&&a[cont]=='0')
                {
                    cont++;
                    tmp--;
                    continue;
                }
                judge=1;
                printf("%c",a[cont]);
            }
            cont++;
            tmp--;
        }
        if(cont<i)
        {
            if(judge==0)printf("0");
            int judge2=0;
            for(int j=cont;j<i;j++)
            {
                if(a[j]!='0')judge2=1;
            }
            if(judge2==0)
            {
                printf("\n");
                continue;
            }
            printf(".");
            for(int j=cont;j<i;j++)
            {
                printf("%c",a[j]);
            }
        }
        printf("\n");
    }
}







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值