• Prime Minister Meles sat down de-facto with three opposition politicians last week to sign what was hailed as a landmark electoral Code of Conduct.

    VOA: standard.2009.11.01

  • Chapters 17 through 26 then are a block of material that's referred to as the "Holiness code" because of its special emphasis on holiness.

    7章到26章是一块,被称为“神圣的代码“的内容“,因为它侧重于神圣。

    耶鲁公开课 - 旧约导论课程节选

  • I was being a little lazy on Wednesday in the interest of simplifying the code as much as possible.

    在周三我在那个网站上尽可能地,简化代码的时候,我有点偷懒。

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

  • The All Ethiopian Unity Party led by Hailu Shewal is the one signatory to the Code of Conduct widely acknowledged as a legitimate independent political force.

    VOA: standard.2009.11.01

  • In general, good programming style says you put in comments that are going to be valuable in helping you as a reader understand what's going on inside of the code.

    通常来说,优秀的编码风格意味着,你要放进去的注释,在帮助代码阅读者,理解代码内部,是怎么工作的。

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

  • Supporters of the code, more than a decade in the making, praised it as enhancing the rights of women and girls, who they say have been traditionally viewed as second-class citizens.

    VOA: standard.2009.08.27

  • But when you look at it in a comparative light in its legal context, we see that it's a polemic against the class distinctions that were being drawn in antecedent and contemporary legal systems, such as the Code of Hammurabi.

    但当你在法律背景下以一种比较的观点看待它时,会发现它驳倒了存在于先前的和同时代的,法律体系中的阶级差异,例如,汉穆拉比法典。

    耶鲁公开课 - 旧约导论课程节选

  • In this study, the research team developed a new statistical way of analyzing the genetic code of people who had reached age 100 as compared with people who had a more typical lifespan.

    VOA: standard.2010.07.14

  • But the things we were trying to stress were that it's an important design decision when you are coming up with a piece of code, as to what kind of efficiency your code has.

    但是我们这里要强调的是,当你写代码的时候,决定你的代码的效率的很重要的事情,就是你的设计决定。

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

  • Even as women's groups applauded the code as a way to combat the forced marriage of young girls and give wives more economic power, many Mali women opposed it as an attack on traditional values.

    VOA: standard.2009.08.27

  • So when you define a function, you have, as we've seen these curly braces, that define all ; of the code that's associated with that function; open curly brace code, close curly brace, that is the function.

    当你定义一个函数,就像我们看到的这些花括号,定义了与,那个函数相关的所有代码;,左花括号,代码,右花括号,这就是一个函数。

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

  • Which is a way of reminding you that I need to think as I write the code about what are my expectations from the input, and how might I enforce them.

    通过这个我在提醒大家,在写代码的时候,要搞清楚对输入的期望,并思考下如何执行这些期望。

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

  • Now you have a set of parentheses as we'll see int i=0 in actual code and then I have int I equal 0.

    你将会在实际的代码中看到一对圆括号,比如,我们让。

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

  • Now I have the ability to create a loop, that is, to reuse the same pieces of code over and over again as I go around.

    现在我们已经学会如何创建循环了,也就是,重复的一遍又一遍的,执行同一片代码。

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

  • I will tell you that a good programmer, at least in my mind, may actually go back and modify the pseudo code as they realize they're missing things, but it's easier to do that when you're looking at a simple set of steps, than when you're in the middle of a pile of code.

    至少我认为是这样的,如果他们发现遗漏了,一些步骤的话会,回过头去修改伪代码,但这当你面对一些大致的步骤时,这个过程就会比,面对一堆代码要简单的多。

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

  • What we're really getting at is the idea of saying I want to have a way of grouping together information into units that make sense. So I can go back to one of those topics we had at the beginning, which is the idea of abstraction, that I can create one of those units as a simple entity, bury away the details and write really modular code.

    组合成为有意义的单元,那么这就让我们回到,一开始讲的话题之一了,这就是抽象的概念,也就是我可以以一个简单的,实体的形式创建这样的一个单元,把具体实现隐藏然后写一些,真正模块化的代码,我们在以后的课程中。

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

  • So I've got one more piece of bad code on this point and this is buggy five dot c. So as a comment on top bug of this file challenges, what is, in fact, the bug.

    所以我在这里得到了一块很烂的代码,这个是buggy5,c,所以作为这个文件顶端的注释,那实际上是那个。

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

  • And if you're sharing a particularly decent amount of code, you should definitely submit it as private, or if easier, you can email help at cs50.net.

    当你分享了一些相当好的代码量,也可以私下提交,或者更简单点,发邮件到cs50,net寻求帮助。

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

  • include stdio h The next line of code says include standard io.h which just as a little sanity check contains among other things, printf.

    接着的一行代码写着,这个库文件包含一些我们常用的函数,譬如,printf函数。

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

  • So it feels a little backward mentally perhaps, 1 but this is saying, "do this block of code as long as n is less than 1."

    所以它感觉可能有点迟缓,但是它指明,“只要n小于,执行这段代码“

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

  • You can certainly hit Enter but as we saw-- seen that very quickly makes a mess of your code and such and so backslash N is new line.

    你也可以敲回车键-,但是会让你的代码看起来乱七八糟,反斜杠n就是换行符。

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

  • So here is the simplest program which is perhaps an ironic statement that you can implement with this language called C. So it takes a few lines of code to actually get something up and running and as you'll recall last Friday, I didn't even get this up and running because part of the process of writing a program is to one, write it.

    让我们回到这个最简单的程序,你们也许觉得啼笑皆非,这么简单的例子,用C语言写出来就可以了嘛,的确只需要几行代码,就可以让这个程序跑起来,就像上周五的那样,我之所以没让它跑起来,因为编程步骤之一,就是“写“

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

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

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

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