博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A+B Format
阅读量:5138 次
发布时间:2019-06-13

本文共 1060 字,大约阅读时间需要 3 分钟。

题目描述

Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits).

 

输入描述:

Each input file contains one test case.  Each case contains a pair of integers a and b where -1000000 <= a, b <= 1000000.  The numbers are separated by a space.

输出描述:

For each test case, you should output the sum of a and b in one line.  The sum must be written in the standard format.

 

输入例子:

-1000000 9

 

输出例子:

-999,991
#include
#include
int str(int a){ int n=0; while(a){ n++; a/=10; } return n;}int main(){ int a,b,c,m,mm; scanf("%d%d",&a,&b); m=a+b; if(m<0) mm = -m; else mm = m; c = str(a+b); if(c<=3) printf("%d",m); if(c>3&&c<=6){ printf("%d,%03d",m/1000,mm%1000); } if(c>6){ printf("%d,%03d,%03d",m/1000000,mm/1000%1000,mm%1000); }}

 

 

这个题没什么特点,反复调整了几次,做完之后感觉并没有利用什么优秀的想法,于是看了一下别人的,好像大家都差不多,意外发现,实行了一下,好像DEV里不能用,日后有空再看一下。

 

转载于:https://www.cnblogs.com/zhangzimu/p/9181032.html

你可能感兴趣的文章
JavaScript面向对象初探——封装和继承
查看>>
L2-001 紧急救援 (dijkstra+dfs回溯路径)
查看>>
【概率】poj 2096:Collecting Bugs
查看>>
javascript 无限分类
查看>>
【自制插件】MMD4Maya
查看>>
解决linux服务器乱码
查看>>
mapbox.gl文字标注算法基本介绍
查看>>
【C++】异常简述(二):C++的异常处理机制
查看>>
web.config在哪里
查看>>
SQL Server 2000 版本支持的最大物理内存量
查看>>
spring IOC装配Bean(注解方式)
查看>>
[面试算法题]有序列表删除节点-leetcode学习之旅(4)
查看>>
SpringBoot系列五:SpringBoot错误处理(数据验证、处理错误页、全局异常)
查看>>
kubernetes_book
查看>>
Redis 常用数据结构命令
查看>>
软件工程课堂作业
查看>>
OpenFire 的安装和配置
查看>>
web.config详解
查看>>
ZJOI2018游记Round1
查看>>
侧边栏广告和回到顶部
查看>>