codemen


私信TA

用户名:uq_72593562742

访问量:1484

签 名:

学习无止境,吾将上下而求索

等  级
排  名 17068
经  验 783
参赛次数 1
文章发表 2
年  龄 18
在职情况 学生
学  校
专  业 软件工程

  自我简介:

解题思路:将题干中出现的数字的英文单词对应储存在数组中,再对应输出

注意事项:

参考代码:

#include<stdio.h>

int main()

{

char *a[60]={"zero","one","two","three","four","five","six","seven","eight","nine","ten",

             "eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen","twenty"}; 

a[30]="thirty";

a[40]="forty";

a[50]="fifty"; 

int h,m;

int h1,m1;

scanf("%d%d",&h,&m);

if(m==0)

printf("%s o'clock",a[h]);

else

{

  if(h<21)

  printf("%s ",a[h]);

  else

  {

  h1=h%10;

    h=h-h1;

    printf("%s %s ",a[h],a[h1]);

  }

  

  if(m<21)

  printf("%s",a[m]);

  else

  {

  m1=m%10;

  m=m-m1;

  if(m1!=0)

    printf("%s %s",a[m],a[m1]);

    else

    printf("%s",a[m]);

  }

}

return 0;

}


 

0.0分

2 人评分

  评论区

  • «
  • »