• <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 閱讀(475) 評論(0)  編輯 收藏 引用
            精品国产99久久久久久麻豆| 久久久久久青草大香综合精品| 91精品国产色综久久 | 亚洲欧洲久久av| 亚洲精品无码久久千人斩| 精品久久久久久中文字幕| 伊人久久大香线蕉精品| 久久久久亚洲AV无码去区首| 久久久久99精品成人片试看| 久久久国产精品| 久久亚洲春色中文字幕久久久| 欧美久久一区二区三区| 91麻精品国产91久久久久| 国产精品中文久久久久久久| 久久精品人妻一区二区三区| 亚洲色欲久久久综合网东京热| 亚洲国产成人久久综合野外| 99久久99这里只有免费费精品| 久久夜色tv网站| 热99re久久国超精品首页| 区久久AAA片69亚洲| 久久久这里有精品中文字幕| 久久99国产乱子伦精品免费| 亚洲中文精品久久久久久不卡 | 久久99精品久久久久久噜噜| 国产精品美女久久久久av爽| 2021少妇久久久久久久久久| 久久精品中文字幕大胸| 伊人久久五月天| 久久久久亚洲AV无码专区桃色| 青青草国产精品久久| 无码人妻精品一区二区三区久久久 | 国产精品成人精品久久久| 国产精品免费福利久久| 久久狠狠高潮亚洲精品| 久久天堂AV综合合色蜜桃网| 久久亚洲日韩看片无码| 久久天天躁夜夜躁狠狠躁2022| 久久亚洲国产最新网站| 久久婷婷人人澡人人爽人人爱| 久久综合九色综合网站|