C++实现中文大写与阿拉伯数字的相互转换(类封装)

简介: C++实现中文大写与阿拉伯数字的相互转换(类封装)

要求和内容

编写控制台模式的程序,接收用户输入的整数,然后将其转换为中文大写金

额的形式。 例如:

输入: 1024

输出: 壹仟零贰拾肆

要求如下:

1)输入输出必须使用 cin、cout。

2)要求每个源文件仅包含单一功能模块。

3) 先设计测试用的例子,并在 test.cpp 中实现,然后实现代码。

4) 在实现上述要求的基础上,修改代码,使其可以转换小数形式的数据,例如输入 3.12时,转换为叁元壹角贰分。

5) 在实现上述要求的基础上,修改代码,使其在输入错误时,给出错误提示,并说明错误出现的位置。

calc.cpp

#include <iostream>
#include <sstream>
#include <string>
#include <stack>
//将string转换成wstring 
#include "calc.h"
using namespace std;
void Num2Uper::transform()
{
    string part_int;
    string part_dec;
    int point_pos = int(this->getNum().find('.'));
    //        cout<<"point_pos = "<<point_pos<<endl;
    if (point_pos == -1)
    {
        part_int = this->num_;
    }
    else
    {
        part_int = num_.substr(0, point_pos);
        part_dec = num_.substr(point_pos + 1);
    }
    int part_int_size = part_int.size();
    //        cout<<"part_int_size = "<<part_int_size<<endl;
    bool zero_flag = true; // flase表示有0
    bool prev_zero_flag = false; // false表示0位之前有非零数
    stack<string> result;
    for (int i = 0; i < part_int_size; ++i)
    {
        //            cout<<"i = "<<i<<endl;
        int tmp = int(part_int[part_int_size - i - 1]) - 48;
        if (i % 4 == 0)
        {
            if (tmp == 0)
            {
                if (!zero_flag && prev_zero_flag)
                {
                    result.push(digits_[0]);
                }
                result.push(unit_1[i]);
                zero_flag = false;
                prev_zero_flag = false;
            }
            else
            {
                //101
                if (!zero_flag && prev_zero_flag)
                {
                    result.push(digits_[0]);
                }
                result.push(unit_1[i]);
                result.push(digits_[tmp]);
                zero_flag = true;
                prev_zero_flag = true;
            }
        }
        else
        {
            if (tmp == 0)
            {
                zero_flag = false;
                continue;
            }
            else
            {
                if (prev_zero_flag && !zero_flag)
                {
                    //                        result.push(digits_[0]);
                    result.push(digits_[0]);
                }
                result.push(unit_1[i]);
                result.push(digits_[tmp]);
                prev_zero_flag = true;
                zero_flag = true;
            }
        }
    }
    string tmp;
    while (!result.empty())
    {
        tmp = result.top();
        result.pop();
        if (tmp == "亿" && result.top() == "万")
        {
            result.pop();
        }
        word_.append(tmp);
        //            result.pop();
    }
    if (point_pos == -1)
    {
        word_.append("");
    }
    else
    {
        word_.append("");
        for (int i = 0; i < part_dec.size(); ++i)
        {
            word_.append(digits_[int(part_dec[i]) - 48]);
            word_.append(unit_2[i]);
        }
    }
}
string Num2Uper::digits_[10] = { "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖" };
string Num2Uper::unit_1[13] = { "", "拾", "佰", "仟", "万", "拾", "佰", "仟", "亿", "拾", "佰", "仟","万" };
string Num2Uper::unit_2[2] = { "角", "分" };

calc.h

#ifndef _CALC__H
#define _CALC__H
#include <iostream>
#include <sstream>
#include <string>
#include <stack>
#include <locale>
#include <codecvt>
#include <comdef.h>
using namespace std;
class Num2Uper
{
public:
    Num2Uper(const string& num)
    {
        /*此处应该检查num的值是否合法。
         * 如:
         *      1- 小于0
         *      2- 小数不合法
         *      3- 数字本身不合法
         *      4- 小数点是非法字符等
         * */
         //if (num.size()-)
        this->setNum(num);
    }
    Num2Uper()
    {
        this->num_ = nullptr;
        this->word_ = nullptr;
    }
    const string& getWord() const
    {
        return word_;
    }
    void setWord(const string& word)
    {
        Num2Uper::word_ = word;
    }
    const string& getNum() const
    {
        return num_;
    }
    void setNum(const string& num)
    {
        Num2Uper::num_ = num;
    }
    virtual ~Num2Uper()
    {
    }
private:
    string word_;
    string num_;
    //    static  string touper_[10]={"零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"};
    //    static  string unit_[15] = { "万", "仟", "佰", "拾", "亿", "仟", "佰", "拾", "万", "仟", "佰", "拾","元", "角", "分"};
    static string digits_[10];
    static  string unit_1[13];
    static  string unit_2[2];
public:
    void transform();
};
wstring string2wstring(string str);
#endif // !_CALC__H

chinesetonum.cpp

#include<string>
#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
#include <sstream>
#include <stack>
#include "chinesetonum.h"
using namespace std;
/*wstring,使用的是wchar_t类型,这是宽字符,用于满足非ASCII字符的要求,例如Unicode编码,中文,日文,韩文什么的。
*/
wstring wsNum =
{ L"零壹贰叁肆伍陆柒捌玖" };
wstring wsUnit = { L"拾佰仟万亿" };
map<wchar_t, long long> m; //数字:零:0 一:1 ...
//单位: 十:10 百:100 ...
//建立wchar_t型到long型的映射
void buildMap() {
    for (int i = 0; i < wsNum.size(); ++i) {
        //      printf("wsNum[%d] = %s\r\n", i,wsNum[i]);
        m[wsNum[i]] = i;
    }
    int unit = 1;
    for (int i = 0; i < wsUnit.size(); ++i) {
        if (i == wsUnit.size() - 1) {
            unit *= 1e4;
        }
        else {
            unit *= 10;
        }
        m[wsUnit[i]] = unit;
    }
}
long long changeChinese2Int(wstring s) {
    reverse(s.begin(), s.end());
    long long ret = 0;
    long long curUnit = 1;
    for (auto c : s) {//输出一个数组的全部元素
        int n = m[c];
        if (n <= 9) {
            ret += n * curUnit;
        }
        else {
            if (n > curUnit) {
                curUnit = n;
            }
            else {
                curUnit *= n;
            }
        }
    }
    if (m[s.back()] > 9) {
        ret += curUnit; //针对不规范的输入,比如输入"十八",而不是"一十八"
    }
    return ret;
}

chinesetonum.h

#ifndef _CHINESETONUM__H
#define _CHINESETONUM__H
#include<string>
#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
#include <sstream>
#include <stack>
using namespace std;
class chinese_to_num {
public:
    void buildMap();
    long long changeChinese2Int(wstring s);
    void chinese_to_num_test(void);
};
void buildMap();
long long changeChinese2Int(wstring s);
#endif // !_CHINESETONUM__H

test.cpp

#include<string>
#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
#include <sstream>
#include <stack>
#include "chinesetonum.h"
#include "test.h"
#include "calc.h"
using namespace std;
void test0(void) {
  std::string s = std::to_string(42);
  cout << s << endl;
  if (s == "-1")
    return;
  Num2Uper num = Num2Uper(s);
  num.transform();
  cout << "人民币" << num.getWord() << endl;
}
void test1(void) {
  std::string s = std::to_string(10009);
  cout << s << endl;
  if (s == "-1")
    return;
  Num2Uper num = Num2Uper(s);
  num.transform();
  cout << "人民币" << num.getWord() << endl;
}
void test2(void) {
  std::string s = std::to_string(10.98);
  cout << s << endl;
  if (s == "-1")
    return;
  Num2Uper num = Num2Uper(s);
  num.transform();
  cout << "人民币" << num.getWord() << endl;
}
void test3(void) {
  std::string s = std::to_string(987654321);
  cout << s << endl;
  if (s == "-1")
    return;
  Num2Uper num = Num2Uper(s);
  num.transform();
  cout << "人民币" << num.getWord() << endl;
}
void test4(void) {
  std::string s = std::to_string(4100200);
  cout << s << endl;
  if (s == "-1")
    return;
  Num2Uper num = Num2Uper(s);
  num.transform();
  cout << "人民币" << num.getWord() << endl;
}
void test(void)
{
   test0();
   test1();
   test2();
   test3();
   test4();
   //chinese_to_num_test();
}
void chinese_to_num_test(void) {
  buildMap();
  vector<wstring> v_test = {
    L"捌",
    L"壹拾",
    L"拾捌",
    L"捌拾",
    L"捌拾贰",
    L"壹佰",
    L"捌佰零捌",
    L"壹仟零贰万零玖拾",
    L"贰仟亿零壹佰零壹万零贰佰",
    L"贰佰叁拾肆",
  };
  for (int i = 0; i < v_test.size(); ++i) {
    wcout.imbue(locale("chs"));
    wcout << v_test[i] << endl;
    long long ret = changeChinese2Int(v_test[i]);
    cout << ret << endl;
  }
}

test.h

#ifndef _TEST__H
#define _TEST__H
void test();
void chinese_to_num_test(void);
#endif // !_TEST__H

main.cpp

#include <iostream>
#include <sstream>
#include <string>
#include <stack>
#include <Windows.h>
#include <locale> 
#include "calc.h"
#include "test.h"
#include "chinesetonum.h"
using namespace std;
//wstring wsNum =
//{ L"零壹贰叁肆伍陆柒捌玖" };
//wstring wsUnit = { L"拾佰仟万亿" };
int main()
{
  cout << "数字转中文大写测试:" << endl;
     test();
   cout << "中文大写转数字测试:" << endl;
   chinese_to_num_test();
   cout << "\r\n" << endl;
    string str;
    while (1)
    {
        cout << "请输入数字金额:";
        cin >> str;
        if (str == "-1")
            break;
        Num2Uper num = Num2Uper(str);
        num.transform();
        cout << "人民币" << num.getWord() << endl;
         wcin.imbue(locale("chs"));
         wcout.imbue(locale("chs"));
         wstring str;
         cout << "请输入中文金额:";
         wcin >> str;
    long long ret = changeChinese2Int(str);
    cout << ret << endl;
    }
    return 0;
}

运行结果


目录
相关文章
|
25天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
38 2
|
1月前
|
存储 编译器 C++
【c++】类和对象(下)(取地址运算符重载、深究构造函数、类型转换、static修饰成员、友元、内部类、匿名对象)
本文介绍了C++中类和对象的高级特性,包括取地址运算符重载、构造函数的初始化列表、类型转换、static修饰成员、友元、内部类及匿名对象等内容。文章详细解释了每个概念的使用方法和注意事项,帮助读者深入了解C++面向对象编程的核心机制。
83 5
|
1月前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
80 4
|
1月前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
88 4
|
2月前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
31 4
|
2月前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
32 4
|
2月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
26 1
|
2月前
|
存储 编译器 C++
【C++类和对象(下)】——我与C++的不解之缘(五)
【C++类和对象(下)】——我与C++的不解之缘(五)
|
2月前
|
编译器 C++
【C++类和对象(中)】—— 我与C++的不解之缘(四)
【C++类和对象(中)】—— 我与C++的不解之缘(四)
|
2月前
|
存储 编译器 C语言
【C++类和对象(上)】—— 我与C++的不解之缘(三)
【C++类和对象(上)】—— 我与C++的不解之缘(三)