概述
#include <stdio.h>
#include <math.h>
void main()
{
char *a[7]={"0","0","十","百","千","万","亿"};
char *b[10]={"0","一","二","三","四","五","六","七","八","九"};
int i,n,num=0,temp;
scanf("%d",&n);
temp = n;
while(temp!=0)
{
temp=temp/10;
num++;
}
temp = n;
while(temp!=0)
{
i=temp/(pow(10,(num-1)));
printf("%s",b[i]);
if(num>1)
{
printf("%s",a[num]);
}
temp=temp-i*(pow(10,(num-1)));
num--;
}
printf("n");
}
最后
以上就是等待睫毛膏为你收集整理的输入int123,输出string一百二十三,假设最大是亿。的全部内容,希望文章能够帮你解决输入int123,输出string一百二十三,假设最大是亿。所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复