将数字转换为文本,C ++

时间:2012-12-07 14:21:09

标签: c++ arrays switch-statement

对于输入数字232,我希望能够以文本形式写出数字:二百三十二。我有一个包含这些数字的数组

Array[0] = 2, Array[1] = 3, Array[2] = 2.

我写了一个

switch statement

查看数字并打印文本,例如二百三十二。我不知道如何动态地将“三”变成“三十”。假设我有更多的拼写数字,比如452,232。

4 个答案:

答案 0 :(得分:3)

你无法独立处理数字,就这么简单。

例如,21的文本是“二十”和“一”的串联,但11的文本不是“十”和“一”的串联。

此外,“1001”不会变成“千零零一”。

您可以使用函数调用来降低逻辑复杂性,但是您需要逻辑来同时查看多个数字。

答案 1 :(得分:2)

结帐this implementation over at wikipedia。这可能是你想要的

直接从维基百科复制,链接是否会被破坏 如果要编写改进的解决方案,请先查看链接

#include <string>
#include <iostream>
using std::string;

const char* smallNumbers[] = {
  "zero", "one", "two", "three", "four", "five",
  "six", "seven", "eight", "nine", "ten",
  "eleven", "twelve", "thirteen", "fourteen", "fifteen",
  "sixteen", "seventeen", "eighteen", "nineteen"
};

string spellHundreds(unsigned n) {
  string res;
  if (n > 99) {
    res = smallNumbers[n/100];
    res += " hundred";
    n %= 100;
    if (n) res += " and ";
  }
  if (n >= 20) {
    static const char* Decades[] = {
      "", "", "twenty", "thirty", "forty",
      "fifty", "sixty", "seventy", "eighty", "ninety"
    };
    res += Decades[n/10];
    n %= 10;
    if (n) res += "-";
  }
  if (n < 20 && n > 0)
    res += smallNumbers[n];
  return res;
}


const char* thousandPowers[] = {
  " billion", " million",  " thousand", "" };

typedef unsigned long Spellable;

string spell(Spellable n) {
  if (n < 20) return smallNumbers[n];
  string res;
  const char** pScaleName = thousandPowers;
  Spellable scaleFactor = 1000000000;   // 1 billion
  while (scaleFactor > 0) {
    if (n >= scaleFactor) {
      Spellable h = n / scaleFactor;
      res += spellHundreds(h) + *pScaleName;
      n %= scaleFactor;
      if (n) res += ", ";
    }
    scaleFactor /= 1000;
    ++pScaleName;
  }
  return res;
}

int main() {
#define SPELL_IT(x) std::cout << #x " " << spell(x) << std::endl;
  SPELL_IT(      99);
  SPELL_IT(     300);
  SPELL_IT(     310);
  SPELL_IT(    1501);
  SPELL_IT(   12609);
  SPELL_IT(  512609);
  SPELL_IT(43112609);
  SPELL_IT(1234567890);
  return 0;
}

答案 2 :(得分:1)

好好考虑数字的位置

在你的情况下

如果3位于第1位:Array[1]=3 then cout "thirty"

如果3位于第2位:Array[2]=3 then cout "three hundred"

等等,考虑非标准案例,如十一或一百零一等。

答案 3 :(得分:-1)

#include <iostream>
#include <conio.h>
#include <stdio.h>
using namespace std;

int main() {

setlocale(LC_ALL,"Turkish");
int ikibsm, yuzler, sayi,birler,onlar;
clrscr();
do {

printf("\nSayıyı giriniz:");
scanf("%d", &sayi);

yuzler=sayi/100;
ikibsm=sayi%100;
onlar=ikibsm/10;
birler=ikibsm%10;

switch (yuzler)
{
    case 0: printf("") ;break;
    case 1: printf("Yüz ") ;break;
    case 2: printf("İkiyüz ") ;break;
    case 3: printf("Üçyüz ") ;break;
    case 4: printf("Dört Yüz ") ;break;
    case 5: printf("Beş Yüz ") ;break;
    case 6: printf("Altı Yüz ") ;break;
    case 7: printf("Yedi Yüz ") ;break;
    case 8: printf("Sekiz Yüz ") ;break;
    case 9: printf("Dokuz Yüz ") ;break;
}


 switch (onlar)
{
    case 1: printf("On ") ;break;
    case 2: printf("Yirmi ") ;break;
    case 3: printf("Otuz ") ;break;
    case 4: printf("Kırk ") ;break;
    case 5: printf("Elli ") ;break;
    case 6: printf("Altmış ") ;break;
    case 7: printf("Yetmiş ") ;break;
    case 8: printf("Seksen ") ;break;
    case 9: printf("Doksan ") ;break;
}

switch(birler)
{
    case 1: printf("Bir ") ;break;
    case 2: printf("İki ") ;break;
    case 3: printf("Üç ") ;break;
    case 4: printf("Dört ") ;break;
    case 5: printf("Beş ") ;break;
    case 6: printf("Altı ") ;break;
    case 7: printf("Yedi ") ;break;
    case 8: printf("Sekiz ") ;break;
    case 9: printf("Dokuz ") ;break;
}
} while (sayi<1000);
}