对于输入数字说232,我希望能够以文本形式写出数字:232。我有一个保存这些数字的数组
Array[0] = 2, Array[1] = 3, Array[2] = 2.
我写了一个
switch statement
将看到数字并将其打印为文本,例如302。我不知道如何动态地将“三个”转化为“三十”。假设我还有更多可拼写的数字,例如452232。
您不能独立处理数字,就这么简单。
例如,21
的文本是“二十”和“一个”的串联,但是11
的文本不是“十”和“一个”的串联。
此外,“ 1001”也不会变成“一千零一百零一”。
您可以使用函数调用来降低逻辑复杂度,但是您将需要逻辑一次查看多个数字。
签出this implementation over at wikipedia。这可能是您想要的
如果链接断开,则直接从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;
}
考虑数字的位置
根据您的情况
如果3在位置1:Array[1]=3 then cout "thirty"
如果3在位置2:Array[2]=3 then cout "three hundred"
依此类推,请考虑非标准案例,例如11或110。
#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);
}