91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++實現整數值轉中文大寫

發布時間:2020-07-27 21:25:25 來源:網絡 閱讀:484 作者:哈夫猿 欄目:編程語言
#include<iostream>
#include<stack>
using namespace std;
string zhCN[] = {"零","壹","貳","叁","肆","伍","陸","柒","捌","玖"};
//正常記賬范圍內數值
string zhUNIT[] = { "拾","佰","仟","萬","拾","佰","仟","億" ,"拾","佰","仟","萬", "拾","佰","仟"};
int main()
{
 //12,345 ,678, 902
 while (1) {
  char cc[32];
  scanf("%s", cc);
  string str_value(cc);
  cout << "input value is " << str_value.c_str() << endl;
  stack<int>nValue;
  for (int i = 0; i < str_value.length(); i++)
  {
   const char cc = str_value.at(i);
   nValue.push((cc - '0'));
  }
  stack<string>cn;
  int ii = 0;
  int zcount = 0;
  while (!nValue.empty())
  {
   int value = nValue.top();
   cn.push(zhCN[value]);
   cn.push(zhUNIT[ii]);
   nValue.pop();
   ii++;
  }
  if (!cn.empty())
  {
   cn.pop();
  }
  //刪除零
  stack<string>cn2;
  while (!cn.empty())
  {
   while (cn.top() != zhCN[0])
   {
    cn2.push(cn.top());
    cn.pop();
    if (cn.empty())
    {
     break;
    }
   }
   if (cn.empty())
   {
    break;
   }
   //找到零結束
   while (cn.top() == zhCN[0])
   {
    
    cn.pop();
    if (cn.empty())
    {
     break;
    }
    if (cn.top() == zhUNIT[3])//保留萬
    {
     cn2.push(zhUNIT[3]);
    }
    if (cn.top() == zhUNIT[7])//保留億
    {
     cn2.push(zhUNIT[7]);
    }
    cn.pop();
   }//找到零結束
   if (!cn.empty())
   {
    cn2.push(zhCN[0]);
   }
   
  }
  stack<string>cn3;
  string newstr = "";  
  while (!cn2.empty())
  {
   cn3.push(cn2.top());
   cn2.pop();
  }
  while (!cn3.empty())
  {   
   newstr += cn3.top();
   cn3.pop();
  }  
  cout << "newstr is " << newstr.c_str() << endl;
 }
 return 0;
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿荣旗| 北流市| 峨眉山市| 桓仁| 井陉县| 容城县| 公主岭市| 喀喇沁旗| 博客| 永善县| 龙陵县| 田阳县| 宜黄县| 彩票| 潢川县| 高邑县| 新乡县| 观塘区| 会同县| 靖州| 洪洞县| 永仁县| 临夏县| 冕宁县| 昌宁县| 麻城市| 平湖市| 西藏| 富源县| 化州市| 金坛市| 中西区| 忻城县| 仪征市| 临漳县| 永仁县| 彰武县| 德格县| 扶余县| 太原市| 浦江县|