• After a year of shrinking output, the U.S.economy grew last quarter at a 3.5 percent annual rate.

    VOA: standard.2009.11.01

  • It gets really kind of trippy if you wanna output a backslash, \ you can't just use the backslash, \\ you need to use backslash backslash because otherwise a single backslash is confused with the so called escape character.

    如果你想输出一个反斜杠,估计又得迷糊了,实际上,你不能直接用,而是要,否则一个\可能会被误认为,是转义字符。

    哈佛公开课 - 计算机科学课程节选

  • If you know you're not gonna output a full string %C but a single character, percent C will get that job done.

    如果你不想输出一个完整的字符串,而是输出一个字母,就要用到。

    哈佛公开课 - 计算机科学课程节选

  • You put some inputs in, it has a contract that says if you put the right kind of inputs in you'll get a specific output coming out, but you don't have to know what's inside of that box.

    你可以将输入一些内容,它相当于一个条件合约,如果你的输入是正确的,你就能得到特定的输出,但是你不知道盒子里面有些什么。

    麻省理工公开课 - 计算机科学及编程导论课程节选

  • And so the whole definition of what a recession is is evolving and... we could be in a similar kind of situation where job...number of jobs goes up or down and maybe output doesn't.

    因此,经济衰退的完整定义,不是一成不变的。,有时可能出现这种情况,失业率也会上升或下降,而国民产量并无波动。

    斯坦福公开课 - 经济学课程节选

  • Well, one thing that goes wrong is that suppose Coke and Pepsi were able to either to write a contract or whatever to sustain joint monopoly output at this high price, this price which is actually producing positive profits in the industry it is going to turn out, therefore the price is going to be above costs.

    我来说吧,问题出在这里了,假设可口可乐和百事达成了协议,不管签的是协议还是合同,只要能通过协约维持垄断产出,通过制定高价来达到正的利润就行,这样价格是高于成本的

    耶鲁公开课 - 博弈论课程节选

  • A TSV file, tab-separated values uses the same thing but a tab character, if you wanna output an actual tab character, the result of hitting the tab key, \t you do use backslash T. That's so those kinds of files are made.

    而TSV文件,“制表符分隔“文件,顾名思义,就是用制表符来分隔每一列,如果你想输出一个真正的制表符,点击tab键,你也可以用,这就是那些文件的形成方式。

    哈佛公开课 - 计算机科学课程节选

  • So one of the things I want you to notice here is that testing and debugging are not the same thing. When we test, we compare an input output pair to a specification.

    这里我想大家注意的一件事,就是测试和调试是不同的两件事情,我们测试的时候,我们把输入输出,跟程序的规格说明书对比下。

    麻省理工公开课 - 计算机科学及编程导论课程节选

  • So if you know a temperature F in Fahrenheit, you can output Celsius.

    如果你知道一个华氏温度的温度值,你们输出摄氏温度。

    哈佛公开课 - 计算机科学课程节选

  • The answer is I can't. OK, in the simple case of integers I can, but in the case of something more complex like faces or fingerprints or passwords for that matter, it's hard to design a hash function that has completely even distribution, meaning that it takes any input into exactly one output spot.

    答案是我不能,好吧,在简单的整数的例子中,我可以做到,但是在一些更复杂的场景中,比如面部,指纹,密码相关的问题中,很难设计一个哈希函数具备完全平均的分配,也就是说,做到对任一输入,可以准确地得到相应的唯一输出,因此在一个哈希问题中。

    麻省理工公开课 - 计算机科学及编程导论课程节选

  • I'm gonna run a.out and your teaser for the kinds of programs you can write after years and years and years of practice will give you output like this.

    运行a,out,这类麻烦的程序,你多年多年之后也能写,因为最后的结果是这样的。

    哈佛公开课 - 计算机科学课程节选

  • Someone-- or someone had to implement, had to write a tool called printf that itself takes input between quotes and produces as output some characters on the screen.

    需要有人去实现,这个printf函数,以双引号间的信息为输入,输出相应字母到屏幕上。

    哈佛公开课 - 计算机科学课程节选

  • So something the Germans used on their U-boats and the output of that is a scrambled message.

    德国人在他们的U型潜水艇所用到的东西的输出,是一个加密消息。

    哈佛公开课 - 计算机科学课程节选

  • Why? Well, out presumably 'cause it's output, a because it's the first letter of the alphabet.

    为什么?也许是因为out代表是输出吧,而a则是字母表的第一个吧。

    哈佛公开课 - 计算机科学课程节选

  • So you have to somehow convert the source code, the C code into 0s and 1s and for that process there exist this tool called a compiler that someone else wrote that takes this stuff as input and produces this stuff as output.

    所以你必须把源代码,即C语言代码转换成二进制文件,这个过程就需要我们提到的编译器了,它是由别人编写的一个软件,以这些代码作为输入,将会产生的输出。

    哈佛公开课 - 计算机科学课程节选

  • human text, ASCII text as input and output zeroes and ones that represent that program in a manner that the CPU, interesting, dammit, not installed on this computer.

    编译器以人输入的文本,ASCII码为输入,它输出一些cpu实际上可以理解的,在这台计算机上没有安装。

    哈佛公开课 - 计算机科学课程节选

  • And conceptually, the idea of cubing a value feels like you could package that up into a little box, a little tool that takes input, a value, and returns output the answer A* so you don't have to constantly do A star, A*A So this program ,at the end of today, is pretty much the same thing.

    概念上,算一个值的立方就像是,你可以把一个值打包放在一个小盒子里,一个用来接收输入的工具,一个值,然后返回一个答案,所以你并不需要一直使用,等等。,A,star,,A,,and,so,forth。,这个程序,最后,是一个差不多的东西。

    哈佛公开课 - 计算机科学课程节选

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定