So why do statements with more conditions sometimes seem more believable?
所以,为什麽比较多条件的陈述句 有时看起来却比较可信?
单词 | Do statement |
释义 |
Do statement
原声例句
TED-Ed(视频版) So why do statements with more conditions sometimes seem more believable? 所以,为什麽比较多条件的陈述句 有时看起来却比较可信? Engvid-Jade-课程合辑 Now we need to do the statement with the most important reason. 现在我们需要用最重要的原因来做陈述。 《金融时报》 Podcast Damian Williams, the US attorney for the southern district, you know, did a video statement. 你知道,美国南部地区检察官达米安·威廉姆斯(Damian Williams)发表了视频声明。 《金融时报》 Podcast They won't have to do the quarterly statements, but some of the limits on what they can do will be affected. 他们不必制作季度报表,但他们可以做的一些限制将会受到影响。 历年四级听力真题精听 This understanding also holds true in the business world, where an organization's stories and the stories its leaders tell, help solidify relationships in a way that factual statements don't. 这种理解也适用于商业领域。在商业领域,一家企业的故事以及领导者讲述的故事,有助于巩固关系,而事实陈述却没有这种作用。 英语四级听力 This understanding also holds true in the business world, where an oraanization's stories and the stories its leaders tell, help solidify relationships in a way that factual statements don't. 这种理解也适用于商业领域。在商业领域,一家企业的故事以及领导者讲述的故事,有助于巩固关系,而事实陈述却没有这种作用。 吉尼斯世界纪录 So I submitted everything, I did the witness statements, time keeper statements and in my cover letter report, I included 'hey, I have this extra piece, it was supposed to be attached'. 所以我提交了所有内容, 我做了证人陈述、计时员陈述,并在我的求职信报告中加入了“嘿, 我有这个额外的部分, 它应该被附上” 。 米德尔马契(五) " She would not see it, " he said at last, curtly, feeling at first that this statement must do without explanation. " And, indeed, I have lost all spirit about carrying on my life here" . “她不会看到的,”他最后简短地说,一开始觉得这句话不必解释。 “而且,事实上,我已经失去了在这里继续我的生活的所有精神”。
中文百科
Do-while循环 Do while loop(重定向自Do statement)
![]() zh:zh|do-while循环 do-while循环(do while loop),也有称do循环,是计算机编程语言中的一种控制流程语句。主要由一个代码块(作为循环体)和一个表达式(作为循环条件)组成,表达式为布尔(boolean)型。循环体内的代码执行一次后,进程会去判断这个表达式的返回值,如果这个表达式的返回值为“true”(即满足循环条件)时,则循环体内的代码会反复执行,直到表达式的返回值为“false”(即不满足循环条件)时终止。进程会在每次循环体每执行一次后,进行一次表达式的判断。 一般情况下,do-while循环与while循环相似。两者唯一的分别:do-while循环将先会执行一次循环体内的代码,再去判断循环条件。所以无论循环条件是否满足,do-while循环体内的代码至少会执行一次。因此,do-while循环属于后测循环(post-test loop)。
英语百科
Do while loop Do-while循环(重定向自Do statement)
![]() In most computer programming languages, a do while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block, or not, depending on a given boolean condition at the end of the block. The do while construct consists of a process symbol and a condition. First, the code within the block is executed, and then the condition is evaluated. If the condition is true the code within the block is executed again. This repeats until the condition becomes false. Because do while loops check the condition after the block is executed, the control structure is often also known as a post-test loop. Contrast with the while loop, which tests the condition before the code within the block is executed, the do-while loop is an exit-condition loop. This means that the code must always be executed first and then the expression or test condition is evaluated. If it is true, the code executes the body of the loop again. This process is repeated as long as the expression evaluates to true. If the expression is false, the loop terminates and control transfers to the statement following the do-while loop. In other words, whereas a while loop sets the truth of a statement as a condition precedent for the code's execution, a do-while loop provides for the action's ongoing execution subject to defeasance by the condition's falsity, which falsity (i.e., the truth of the condition's negation) is set as a condition subsequent. |
随便看 |
|
英汉网英语在线翻译词典收录了3779314条英语词汇在线翻译词条,基本涵盖了全部常用英语词汇的中英文双语翻译及用法,是英语学习的有利工具。