1024 科学计数法 (20分)+测试点5

26 篇文章 0 订阅

题目链接
思路
%[] 的意思是:读入此集合所限定的那些字符。例如 %[A-Z] 是指接受大写字母,一旦遇到非大写字母便停止接受,而 %[^] 是指不要读入此集合所限定的那些字符。例如 % [^A-Z] 是指不接受大写字母,一旦遇到大写字母便停止接受。
测试点5不过可能是数组开小了
AC代码

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<string>
#include<map>
#include<stack>
using namespace std;
typedef long long ll;
const int maxn=1e6;

int main()
{
    char h,a[10005]={0};
	int e;
	scanf("%c%c.%[0-9]E%d",&h,&a[0],a+1,&e);
	if(h=='-')
	printf("-");
	if(e<0)
	{
		printf("0.");
		e=-e-1;
		while(e)
		{
			printf("0");
			e--;
		}
		printf("%s",a);
	}
	else
	{
		for(int i=0;i<=e||a[i]!=0;i++)
		{
			if(i==e+1)
			printf(".");
			printf("%c",a[i]==0?'0':a[i]);
		}
	}
	return 0;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值