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

    1001. A+B Format (20)

    时间限制
    400 ms
    内存限制
    65536 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
     1 #include<stdio.h>
     2 #include<math.h>
     3 #include<stdlib.h>
     4 #include<string.h>
     5 
     6 int main()
     7 {
     8     int a, b, c;
     9     scanf("%d%d", &a, &b);
    10     c = a + b;
    11     if(c < 0)
    12     {
    13         printf("-");
    14         c = -c;
    15     }
    16     int i = 0, sum[20];
    17     do{
    18         sum[i] = c % 10;
    19         c /= 10;
    20         i++;
    21     }while(c != 0);
    22     for(i = i - 1; i >= 0; i--)
    23     {
    24         printf("%d", sum[i]);
    25         if(i % 3 == 0 && i != 0)
    26             printf(",");
    27     }
    28     printf("
    ");
    29     return 0;
    30 }
  • 相关阅读:
    HDU 1978 How many ways
    hdu 1966 Pie
    hdu 1966 Pie
    HDU 1896 Stones
    HDU 1896 Stones
    hdu 1278 逃离迷宫
    hdu 1278 逃离迷宫
    HDU 2548 A strange lift
    HDU 2548 A strange lift
    PHP 错误与异常 笔记与总结(10)错误处理器测试
  • 原文地址:https://www.cnblogs.com/yomman/p/4275082.html
Copyright © 2011-2022 走看看