zoukankan      html  css  js  c++  java
  • PAT 1001. A+B Format

    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<iostream>
    using namespace std;
    int main(){
    	int a,b,cnt=0;
    	cin>>a>>b;
    	a+=b;
    	string s;
    	s=to_string(a);
    	int t=a<0?2:1;
    	for(int i=s.length()-1;i>=t;i--){
    		cnt++;
    		if(cnt%3==0){
    		s.insert(i,1,',');
    		cnt=0;	
    		}	
    	}
    	cout<<s;
    	return 0;
    }
    
  • 相关阅读:
    MySQL too many connections
    【MySQL】 清除等待连接
    wmic 获得系统硬件信息
    Linux 修改用户名
    初步了解虚拟化
    MySQL show 语句
    php去除bom
    jq闭包
    git
    地址收藏
  • 原文地址:https://www.cnblogs.com/A-Little-Nut/p/8175661.html
Copyright © 2011-2022 走看看