- 论坛徽章:
- 1
|
新手问个问题
#include<stdio.h>;
char str[64] = "币";
char tbl0[] = "零壹贰叁肆伍陆柒捌玖";
char tbl1[] = "万仟佰拾亿仟佰拾万仟佰拾元 角分整";
char* UPMONEY( double mony )
{
char buf[17];
int i, j, c, p;
sprintf(buf, "%16.2lf", mony);
printf( "%s \n", buf );
p = 2;
j = 0;
for( i = 0; i < 16; i++)
{
switch( c = buf )
{
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
if( j != 0 )
{
str[p++] = tbl0[0]; /* 零 */
str[p++] = tbl0[1];
}
c = 2 * (c - '0');
str[p++] = tbl0[c++]; /* 数 */
str[p++] = tbl0[c++];
str[p++] = tbl1[2*i]; /* 数的位 */
str[p++] = tbl1[2*i+1];
j = 0;
break;
case '0':
j++;
if( ((j<4) && ((i == 4) || ( i == 8 ))) ||
( i == 12 ) )
{
str[p++] = tbl1[2*i]; /* 亿 万 元 */
str[p++] = tbl1[2*i+1];
}
break;
case ' ':
break;
case '.':
/* j = 0 我不太清楚 三十元一角 还是三十元零一角那个对 */
break;
};
}
if( (j>;=2 ) && ( i == 16 ) )
{
str[p++] = tbl1[2*i]; /* 整 */
str[p++] = tbl1[2*i+1];
}
str[p] = '\0';
return(str);
}
main()
{
double l;
char str[64];
printf("please insert a number:" ;
scanf("%lf",&l);
sprintf(str,"%s",UPMONEY(l));
printf("the number is %s",str);
} |
|