博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
浙江大学PAT上机题解析之1001. A+B Format (20)
阅读量:5285 次
发布时间:2019-06-14

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

1001. A+B Format (20)

时间限制 
400 ms
内存限制 
32000 kB
代码长度限制 
16000 B
判题程序   
Standard
作者   
CHEN, Yue

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).

Input

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.

Output

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.

Sample Input
-1000000 9
Sample Output
-999,991
 
#include
#include
#include
using namespace std;int main(){ int M,N,sum=0; string str; int flag=0; string::iterator it; cin>>M>>N; sum = M+N; if (sum<0) { sum = 0-sum; flag=1; } while(sum) { char ch = '0'+sum%10; str.push_back(ch); sum/=10; } if (str.empty()) cout<<"0"<

转载于:https://www.cnblogs.com/ainima/p/6331284.html

你可能感兴趣的文章
2012-01-12 16:01 hibernate注解以及简单实例
查看>>
iOS8统一的系统提示控件——UIAlertController
查看>>
PAT甲级——1101 Quick Sort (快速排序)
查看>>
python创建进程的两种方式
查看>>
1.2 基础知识——关于猪皮(GP,Generic Practice)
查看>>
迭代器Iterator
查看>>
java易错题----静态方法的调用
查看>>
php建立MySQL数据表
查看>>
最简单的线程同步的例子
查看>>
旅途上看的电影和观后感
查看>>
Ztree异步树加载
查看>>
关于IE和火狐,谷歌,Safari对Html标签Object和Embed的支持问题
查看>>
poj3320 Jessica's Reading Problem(尺取思路+STL)
查看>>
分布式计算开源框架Hadoop介绍
查看>>
坏的事情不都会带来坏的结果
查看>>
RPC的基础:调研EOS插件http_plugin
查看>>
第二次团队冲刺第二天
查看>>
bzoj 2257 (JSOI 2009) 瓶子与燃料
查看>>
11)Java abstract class 和 interface
查看>>
使用xrdp或Xmanager 远程连接 CentOS6
查看>>