《乔布斯传》英文原著重点词汇笔记(十五)【 chapter fourteen】

Enter Sculley:The Pepsi Challenge 之 The Courtship(n.求爱期,追爱期)

1. relish                         v.喜爱
… he did not relish adjudicating conflict or curating high-maintenance egos.

2. intrigue                     v.激发了…的兴趣
He was still reluctant to leave Pepsi, but Jobs intrigued him.

3. confide                       v. 吐露,倾诉;托付,委托
As they continued their long walk, Scully confided that on vacations he went to the Left Bank in Paris to draw in his sketchbook …

4. underwhelmed            adj. 无动于衷的,毫不激动的;未激起热情的,未给……留下深刻印象的
Hertzfeld was so excited he began waving his arms around during the demo, but Sculley seemed underwhelmed.

5. Matters came to a head when Jobs v

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
下面是一个用 C 语言实现翻译数字的代码: ```c #include <stdio.h> #include <stdlib.h> #include <string.h> char *less_than_20[] = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen"}; char *tens[] = {"", "", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"}; char *thousands[] = {"", "thousand", "million", "billion", "trillion"}; void translate(unsigned int number, char *result) { int divisions[] = {1000000000, 1000000, 1000, 1}; int i; *result = '\0'; if (number == 0) { strcat(result, less_than_20[0]); return; } for (i = 0; i < 4; ++i) { int current = number / divisions[i]; if (current != 0) { translate(current, result); strcat(result, thousands[i]); if (number % divisions[i] != 0) { strcat(result, " "); translate(number % divisions[i], result); } return; } } if (number < 20) { strcat(result, less_than_20[number]); } else if (number < 100) { strcat(result, tens[number / 10]); if (number % 10 != 0) { strcat(result, " "); translate(number % 10, result); } } else if (number < 1000) { strcat(result, less_than_20[number / 100]); strcat(result, " hundred"); if (number % 100 != 0) { strcat(result, " and "); translate(number % 100, result); } } } int main() { unsigned int number; char result[1000]; printf("请输入数字: "); scanf("%u", &number); translate(number, result); printf("%s\n", result); return 0; } ``` 这段代码可以将输入的数字翻译成英语,例如输入12345,输出 twelve thousand three hundred and forty five。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值