• <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 閱讀(483) 評論(0)  編輯 收藏 引用
            久久人人爽人人爽AV片| 国产精品免费久久| 一本久久综合亚洲鲁鲁五月天| 亚洲国产天堂久久综合网站| 日本免费久久久久久久网站| 久久美女网站免费| 亚洲欧美日韩精品久久| 国产午夜精品久久久久九九| 成人国内精品久久久久影院| 色综合久久久久| 国产三级精品久久| 区亚洲欧美一级久久精品亚洲精品成人网久久久久 | 久久无码精品一区二区三区| 一日本道伊人久久综合影| 99精品国产免费久久久久久下载| 99精品国产综合久久久久五月天| 奇米影视7777久久精品| 久久精品嫩草影院| 一本综合久久国产二区| 久久99国产综合精品免费| 久久综合综合久久狠狠狠97色88| 无码人妻少妇久久中文字幕| 久久久久高潮综合影院| 国产∨亚洲V天堂无码久久久| 久久国产乱子伦精品免费强| 久久男人中文字幕资源站| 亚洲国产精品无码久久一线| 国产精品99久久精品爆乳| 久久久久久久精品妇女99| 久久久精品午夜免费不卡| 亚洲国产成人久久综合野外| 久久国产精品无码HDAV| 久久久亚洲精品蜜桃臀| 国产精品欧美久久久天天影视| 久久久精品视频免费观看| 色狠狠久久AV五月综合| 久久久久18| 91久久精品国产91性色也| 亚洲午夜久久久久妓女影院| 久久九九免费高清视频| 国产成人精品白浆久久69|