E

You are given a positive decimal number x.
Your task is to convert it to the “simple exponential notation”.
Let x = a·10b, where 1 ≤ a < 10, then in general case the “simple exponential notation” looks like “aEb”. If b equals to zero, the part “Eb” should be skipped. If a is an integer, it should be written without decimal point. Also there should not be extra zeroes in a and b.

    Input
    The only line contains the positive decimal number x. The length of the line will not exceed 106. Note that you are given too large number, so you can't use standard built-in data types "float", "double" and other.

    Output
    Print the only line — the "simple exponential notation" of the given number x.

    Examples

Input

16

Output

1.6E1

Input

01.23400

Output

1.234

Input

.100

Output

1E-1

Input

Output

1E2

#include <string.h>
#include <stdio.h>
#include <iostream>
using namespace std;
const int maxn=1000000+10;
char a[maxn];
int main()
{
    int point;
    int start;
    int end;
    int i,b;
    int k1=0,k2=0;
    cin >> a;
    int n=strlen(a);
    for(i=0; i<n; i++)
    {
        if(a[i]=='.'&&!k2)
        {
            point=i;
            k2=1;
        }
        else if(a[i]!='0'&&!k1)
        {
            start=i;
            k1=1;
        }
        if(k1&&k2)
        {
            break;
        }
    }
    for(i=n-1; i>=0; i--)
    {
        if(a[i]!='0'&&a[i]!='.')
        {
            end=i;
            break;
        }
    }
    if(k2==0)
    {
        point=n;
    }
    b=point-start;
    if(b>0)
    {
        b=b-1;
    }
    if(start==end)
    {
        cout << a[start];
    }
    else
    {
        cout << a[start] << ".";
        for(i=start+1; i<=end; i++)
        {
            if(a[i]!='.')
            {
                cout << a[i];
            }
        }
    }
    if(b)
    {
        cout << "E" << b << endl;;
    }
    else
    {
        cout << endl;
    }
    return 0;
}
/*
这题要看第一个不是零的位置和最后一个不是零的为置输出他们中间的数值
,并在第二位加.,而E后的只需要用小数点的位置减起始位置在减1就是了;
*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ZZ --瑞 hopeACMer

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值