永发信息网

用C语言写下面一个程序,最好用Switch语句

答案:1  悬赏:0  手机版
解决时间 2021-05-21 16:27
  • 提问者网友:鐵馬踏冰河
  • 2021-05-20 22:50
用C语言写下面一个程序,最好用Switch语句
write a program that tasks an intger keyd in from the terminal and extracts and extracts and displays each digit of the integer int English.So,if the user types int 932,the program should display.
最佳答案
  • 五星知识达人网友:掌灯师
  • 2021-05-21 00:12

#include <stdio.h>

//显示每个数字的英文
void displayEnglish(int num)
{
switch(num)
{
case 0:
printf("zero ");break;
case 1:
printf("one ");break;
case 2:
printf("two ");break;
case 3:
printf("three ");break;
case 4:
printf("four ");break;
case 5:
printf("five ");break;
case 6:
printf("six ");break;
case 7:
printf("seven ");break;
case 8:
printf("eight ");break;
case 9:
printf("nine ");break;
default:
printf("error.\n");
}
}

void main()
{
printf("输入一个整数:");
int num;
scanf("%d",&num);

do
{
displayEnglish(num%10);
num/=10;
} while(num>0);
printf("\n");
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯