Exponential notation

Exponential notation

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
100.
Output
1E2
分析:这种题要多注意细节!
代码:
#include <bits/stdc++.h>
using namespace std;
int n,m,cnt,len,l,r,now;
string a,ans;
int main()
{
    int i,j,k,t;
    cin>>a;
    len=a.length();
    //找小数点;
    for(now=0;now<len&&a[now]!='.';now++);
    //找左端点和右端点;
    if(a[l]=='.')l++;if(a[r]=='.')r--;
    for(l=0;a[l]=='0';l++);
    if(a[l]=='.')for(l++;a[l]=='0';l++);
    for(r=len-1;a[r]=='0';r--);
    if(a[r]=='.')for(r--;a[r]=='0';r--);
 
    ans+=a[l];
    if(r!=l){
        ans+='.';
        for(i=l+1;i<=r;i++)if(a[i]!='.')ans+=a[i];
    }
    cnt=now-(l+1);
    if(l+1>now)cnt++;
    cout<<ans;
    if(cnt)cout<<"E"<<cnt;
    cout<<endl;
    //system("pause");
    return 0;
}

 

转载于:https://www.cnblogs.com/dyzll/p/5672472.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值