cf 619c 科学记数法1

Time Limit: 2000MS   Memory Limit: 262144KB   64bit IO Format: %I64d & %I64u

 Status

Description

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.

Sample Input

Input
16
Output
1.6E1
Input
01.23400
Output
1.234
Input
.100
Output
1E-1
Input
100.
Output
1E2


代码如下:

#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<iostream>
#define M 1000005
char s[M],ss[M];
using namespace std;
int main()
{
    int i,k,j,m,k1,k2;
    while(~scanf("%s",&s))
    {
        m=strlen(s);
        for(i=0; i<m; i++)
        {
            if(s[i]=='.')//标记小数点的位置
            {
                k1=i;
                break;
            }
            else k1=m;
        }

        for(i=0; i<m; i++)
        {
            if(s[i]>'0'&&s[i]<='9')
            {
                ss[0]=s[i];
                ss[1]='.';
                k=1;
                k2=i+1;
                for(j=i+1; j<m; j++)
                {if(s[j]>='0'&&s[j]<='9')
                    ss[++k]=s[j];
                }
                break;
            }
        }
        for(i=k; i>=1; i--)//去掉多余的0和小数点
        {
            if(ss[i]=='0'||ss[i]=='.')
                k--;
            else break;
        }
        for(i=0; i<k+1; i++)
            printf("%c",ss[i]);
        if(k1>k2)
        {
            printf("E%d",k1-k2);
        }
        else if(k1<k2)
            printf("E%d",k1-k2+1);
        printf("\n");
    }
    return 0;
}




全部评论

相关推荐

天降大厂offer:想从事前端就放前端的技术栈,然后项目描述,还有项目做了什么内容,使用了什么技术解决了什么问题优化了什么性能。然后头像可以不要,在读也可以不要,还有bg的话就不要放课程,写哪个学校什么本科,还有绩点排名(如果高的话),然后就是技术栈写好一点,接下来就是项目(有实习就写实习,没有就到项目),项目放两个好一点的,自己包装一下,然后有参加什么竞赛放两个就好了,接下来就是靠你自己了,毕竟211还是很难容易找的,不像我们学院本
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务