• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            posts - 183,  comments - 10,  trackbacks - 0
            除以 1000 , 對余數進行處理
             1 #include <iostream>
             2 using namespace std;
             3 
             4 char* reverse(char* s, int low, int high)
             5 {
             6     while (low < high)
             7     {
             8         s[low] ^= s[high];
             9         s[high] ^= s[low];
            10         s[low] ^= s[high];
            11         ++low;
            12         --high;
            13     }
            14     return s;
            15 }
            16 
            17 char* format_thousands_separator(char a[], unsigned long val)
            18 {
            19     char* ret = a;
            20     char temp[4];
            21     int t;
            22     int n = 0;
            23     while (val > 1000)
            24     {
            25         t = val % 1000;
            26         if (t >= 100)
            27         {
            28             itoa(t, temp, 10);
            29             reverse(temp, 02);
            30             //cout << temp << endl;
            31             strcat(ret, temp);
            32             //cout<< "test" << ret << endl;
            33         }
            34         else if (t >= 10)
            35         {
            36             itoa(t, temp, 10);
            37             reverse(temp, 01);
            38             strcat(ret, temp);
            39             strcat(ret, "0");
            40         }
            41         else
            42         {
            43             itoa(t, temp, 10);
            44             strcat(ret, temp);
            45             strcat(ret, "00");
            46         }
            47         strcat(ret, ",");
            48         n += 4;
            49         val /= 1000;
            50         ret[n] = '\0';
            51         cout << ret << endl;
            52     }
            53     if (val >= 100)
            54     {
            55         itoa(val, temp, 10);
            56         reverse(temp, 02);
            57         strcat(ret, temp);
            58         n += 3;
            59     }
            60     else if (val >= 10)
            61     {
            62         itoa(val, temp, 10);
            63         reverse(temp, 01);
            64         strcat(ret, temp);
            65         n += 2;
            66     }
            67     else
            68     {
            69         itoa(val, temp, 10);
            70         strcat(ret, temp);
            71         ++n;
            72     }
            73     reverse(ret, 0, n - 1);
            74     ret[n] = '\0';
            75     return ret;
            76 };
            77 
            78 int main()
            79 {
            80     unsigned long ul;
            81     char sul[20= {0};
            82     while (cin >> ul)
            83     {
            84         cout << format_thousands_separator(sul, ul) << endl;
            85     }
            86     return 0;
            87 }

            先轉換成一個 字符串 ,然后從右掃描,加逗號,然后反轉
             1 #include <iostream>
             2 #include <sstream>
             3 #include <string>
             4 #include <algorithm>
             5 using namespace std;
             6 
             7 const string& format_thousands_separator(string& s, unsigned long val)
             8 {
             9     s.clear();
            10     char t[20];
            11     string temp(ltoa(val, t, 10));
            12 
            13     int n = 0;
            14     for (string::const_reverse_iterator cit = temp.rbegin(); cit != temp.rend(); ++cit)
            15     {
            16         ++n;
            17         s += *cit;
            18         if (n == 3)
            19         {
            20             s += ',';
            21             n = 0;
            22         }
            23     }
            24     reverse(s.begin(), s.end());
            25     return s;
            26 }
            27 
            28 int main()
            29 {
            30     unsigned long ul;
            31     string sul;
            32     while (cin >> ul)
            33     {
            34         cout << format_thousands_separator(sul, ul) << endl;
            35     }
            36     return 0;
            37 }

            http://www.shnenglu.com/qinqing1984/archive/2011/06/24/149366.html





            posted on 2011-06-24 16:46 unixfy 閱讀(471) 評論(0)  編輯 收藏 引用
            久久久久久青草大香综合精品| 久久亚洲精品国产精品婷婷| 色综合色天天久久婷婷基地 | 久久水蜜桃亚洲av无码精品麻豆| 亚洲中文字幕久久精品无码喷水 | 狠狠精品久久久无码中文字幕| 久久亚洲国产成人影院网站| 日产精品久久久久久久| 国产精品热久久毛片| 伊人久久精品无码av一区| 国产精品热久久无码av| 久久天天躁狠狠躁夜夜avapp| 精品乱码久久久久久夜夜嗨| 狠狠色丁香久久婷婷综合| 狠狠色综合久久久久尤物| 久久精品99久久香蕉国产色戒 | 久久婷婷五月综合色高清| 蜜臀久久99精品久久久久久| 国内精品久久国产大陆| 久久99九九国产免费看小说| 精品国产热久久久福利| 国产一级做a爰片久久毛片| 久久精品国产亚洲AV影院| 日韩欧美亚洲综合久久影院Ds| 国产精品一久久香蕉产线看| 久久亚洲美女精品国产精品| 一本色道久久88精品综合 | 99国产精品久久| 无码人妻久久一区二区三区免费 | 性高朝久久久久久久久久| 亚洲综合婷婷久久| 久久99国产精品一区二区| 久久久婷婷五月亚洲97号色| 99精品国产99久久久久久97| 色天使久久综合网天天| 亚洲精品久久久www| 欧美久久一区二区三区| 久久婷婷午色综合夜啪| 久久久国产视频| 久久丫精品国产亚洲av不卡 | 久久99热只有频精品8|