C语言程序设计ppt-Chapter 3 Control Flow(替换中文教材第4章).ppt

C语言程序设计ppt-Chapter 3 Control Flow(替换中文教材第4章).ppt

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C语言程序设计ppt-Chapter 3 Control Flow(替换中文教材第4章)

华中科技大学计算机学院 The C Programming Language The C Programming Language Chapter 3 Control Flow Classification of C statements Statements General Description Purpose: The Control-flow statements of a language specify the order in which computations are performed. Statements: Control-flow statements include Expression statement、block/compound statement、if statement, switch statement、while statement, do-while statement, for statement, label statement and transfer statements which includes break, continue, goto and returnstatement. label statement and transfer statements are rarely used in programming.?? 3.1 Statements and Blocks -Expression statement An expression such as x=0 or i++ or printf(…) becomes a statement when it is followed by a semicolon, as in x= 0; i++; printf(…); In C, the semicolon is a statement terminator, rather than a separator as it is in language like Pascal. Compound statement or block(1) Braces { and } are used to group declarations and statements together into a compound statement, or block, so that they are syntactically equivalent to a single statement. There is no semicolon after the right brace that ends a block. Compound statement or block(2) The braces that surround the statement of a function are one obvious example; Ex. void main(void) { statement sequence } Compound statement or block(3) braces around multiple statements after an if, else, while, or for are another. Ex. int x=1,y=2,z=3; if(x1){ y++; z = x+y; } Compound statement or block(3) variables can be declared inside any block. Example: { int a = 0, b = 1; { /* this is called nested compound statement */ int a=1; printf(”a=%d\n”, a); /* output 1 */ printf(”b=%d\n”,b += 1); } printf(“a=%d\n”,a); /* output 0 */ printf(“b=%d\n”,b); } 3.2 If-Else The if-else statement is used to express decisions. Formally, the syntax is if(expression) statement1 else statement2 where the else part is optional. First, the expressio

文档评论(0)

sd44055 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档