程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> codeforces 143B Help Kingdom of Far Far Away 2

codeforces 143B Help Kingdom of Far Far Away 2

編輯:C++入門知識

For some time the program of rounding numbers that had been developed by the Codeforces participants during one of the previous rounds, helped the citizens of Far Far Away to convert numbers into a more easily readable format. However, as time went by, the economy of the Far Far Away developed and the scale of operations grew. So the King ordered to found the Bank of Far Far Away and very soon even the rounding didn't help to quickly determine even the order of the numbers involved in operations. Besides, rounding a number to an integer wasn't very convenient as a bank needed to operate with all numbers with accuracy of up to0.01, and not up to an integer. The King issued yet another order: to introduce financial format to represent numbers denoting amounts of money. The formal rules of storing a number in the financial format are as follows: A number contains the integer part and the fractional part. The two parts are separated with a character "." (decimal point). To make digits in the integer part of a number easier to read, they are split into groups of three digits, starting from the least significant ones. The groups are separated with the character "," (comma). For example, if the integer part of a number equals 12345678, then it will be stored in the financial format as 12,345,678 In the financial format a number's fractional part should contain exactly two digits. So, if the initial number (the number that is converted into the financial format) contains less than two digits in the fractional part (or contains no digits at all), it is complemented with zeros until its length equals 2. If the fractional part contains more than two digits, the extra digits are simplydiscarded (they are not rounded: see sample tests). When a number is stored in the financial format, the minus sign is not written. Instead, if the initial number had the minus sign, the result is written in round brackets. Please keep in mind that the bank of Far Far Away operates using an exotic foreign currency — snakes ($), that's why right before the number in the financial format we should put the sign "$". If the number should be written in the brackets, then the snake sign should also be inside the brackets. For example, by the above given rules number 2012 will be stored in the financial format as "$2,012.00" and number -12345678.9 will be stored as "($12,345,678.90)". The merchants of Far Far Away visited you again and expressed much hope that you supply them with the program that can convert arbitrary numbers to the financial format. Can you help them? Input The input contains a number that needs to be converted into financial format. The number's notation length does not exceed100 characters, including (possible) signs "-" (minus) and "." (decimal point). The number's notation is correct, that is: The number's notation only contains characters from the set {"0" – "9", "-", "."}. The decimal point (if it is present) is unique and is preceded and followed by a non-zero quantity on decimal digits A number cannot start with digit 0, except for a case when its whole integer part equals zero (in this case the integer parts is guaranteed to be a single zero: "0"). The minus sign (if it is present) is unique and stands in the very beginning of the number's notation If a number is identically equal to 0 (that is, if it is written as, for example, "0" or "0.000"), than it is not preceded by the minus sign. The input data contains no spaces. The number's notation contains at least one decimal digit. Output Print the number given in the input in the financial format by the rules described in the problem statement. Sample test(s) Input 2012 Output $2,012.00 Input

#include <iostream>  
#include <cstdio>  
#include <cmath>  
#include <cstring>  
using namespace std;  
void dao(char a[])  
{  
    int i,n=strlen(a);  
    char t;  
    for(i=0; i<n/2; i++)  
    {  
        t=a[i];  
        a[i]=a[n-1-i];  
        a[n-1-i]=t;  
    }  
}  
  
  
int main()  
{  
    char a[110],b[110],bb[220],c[10];  
    while(scanf("%s",a)!=EOF)  
    {  
        memset(b,0,sizeof(b));  
        memset(c,0,sizeof(c));  
        memset(bb,0,sizeof(bb));  
        int i,j,n=strlen(a),tu=0;  
        if(a[0]=='-')  
        {  
            printf("(");  
            i=1;  
            tu=1;  
        }  
        else  
            i=0;  
        for( j=0; i<n&&a[i]!='.'; i++)  
            b[j++]=a[i];  
  
        if(i==n)  
        {  
            c[0]='0';  
            c[1]='0';  
        }  
        else  
        {  
            strcpy(c,&a[i]+1);  
        }  
        int m=strlen(c);  
        if(m==0)  
        {  
            c[0]='0';  
            c[1]='0';  
        }  
        else if(m==1) c[1]='0';  
        printf("$");  
        dao(b);                                         //添加“,”,這樣做比較簡單了  
        for(i=0,j=0; i<strlen(b); i++)  
        {  
            bb[j++]=b[i];  
            if((i+1)%3==0&&i!=strlen(b)-1) bb[j++]=',';  
        }  
        dao(bb);  
          
        printf("%s",bb);                    //輸出部分  
        printf(".%c%c",c[0],c[1]);  
  
        if(tu) printf(")");               //用的tu判斷是否為負數,開始用if(a[0]=='-'),測試數據都是對的,竟然過不了.....  
        printf("\n");  
    }  
  
  
    return 0;  
}  

 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved