PAT A1073/B1024 Scientific Notation(科学计数法)

题目链接

#include<cstdio>
int main(){
    char number[10000],flag;//flag保存数的符号
    int exponent=0,i,pos;//pos表示最终小数点的位置
    scanf("%c",&flag);
    for(i=0;scanf("%c",&number[i])!=EOF;i++){//只保存有效数字
        if(number[i]=='.') {i--;}//不保存小数点
        if(number[i]=='E') {number[i]='\0';break;}//不保存指数部分
    }
    scanf("%d",&exponent);
    if(flag=='-') printf("-");
    if(exponent<0){//指数为负
            printf("0.");
            exponent=-exponent;
            exponent--;
            while(exponent--){
                printf("0");//要在原来有效位数前面加0
            }
            printf("%s",number);
        }
        else{//指数为正
            pos=i-1-exponent;
           if(pos<0) {//小数点出现在原有效数字末尾的右边
             printf("%s",number);
             pos=-pos;
             while(pos--){
             printf("0");//末尾加零
            }
           }
           else{if(pos==0) printf("%s",number);//小数点正好在有效数字末尾,不用加小数点
                else for(int j=0;number[j]!='\0';j++){//小数点在有效数字之间,即末尾的左边
               printf("%c",number[j]);
               if(j==exponent) printf(".");//在合适的地方加上小数点
           }
        }
        }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值