国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

1001. A+B Format (20)

2019-11-11 04:26:06
字體:
供稿:網(wǎng)友

問題

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).InputEach 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.OutputFor 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 9Sample Output-999,991

題目地址:https://www.patest.cn/contests/pat-a-PRactise/1001

解答:

#include<stdio.h>
#define LEN 15void FormatPrint(const long int n);int main(){  int a, b;  scanf("%d %d", &a, &b);  FormatPrint(a + b);  return 0;}void FormatPrint(const long int n){  long int num;  if (n == 0) {    putchar('0');    return;  }  else if (n < 0)    num = -n;  else    num = n;  int i = 0;  int tag = 1;  char number[LEN] = { 0 };  while (num > 0) {    number[i++] = '0' + num % 10;    num /= 10;    if (tag % 3 == 0 && num != 0)      number[i++] = ',';    tag++;  }  if (n < 0)    putchar('-');  for (i = i - 1; i >= 0; i--)    putchar(number[i]);}


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 商洛市| 察隅县| 夏河县| 双江| 通山县| 仙游县| 家居| 乌拉特中旗| 南涧| 藁城市| 盐源县| 卓尼县| 南充市| 沈阳市| 安陆市| 汾西县| 金寨县| 勃利县| 栾城县| 荆州市| 儋州市| 哈密市| 特克斯县| 保康县| 徐闻县| 仲巴县| 黔西县| 福鼎市| 子长县| 牡丹江市| 秭归县| 新宾| 和平区| 广德县| 达孜县| 泰州市| 聊城市| 德惠市| 吉木萨尔县| 鄂托克前旗| 霍林郭勒市|