C语言循环语句(C language loop statement).docVIP

C语言循环语句(C language loop statement).doc

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
C语言循环语句(C language loop statement)

C语言循环语句(C language loop statement) Output for 10 groups per line. #include stdio.h Void, main () {int, I, J, flag, k=0; For (i=500; i=800; i++) {flag=1; For (j=2; ji; j++) if (i%j==0) flag=0; If (flag==1) {printf (%5d, I); k++; If (k%10==0) printf (\n); } } Printf (\nk=%d\n, K); } The second part: break and continue statements The function of the 1.1.break statement: to end the for statement in this layer. 1.2. example: write function, ask s=1+2+3... Until the value of S is greater than the t end loop, the output s is the value, and the value of T is read through the keyboard. #include stdio.h Void, main () {int, I, s=0, t; Printf (enter the value of T:); Scanf (%d, t); For (i=1;; i++) {s+=i; If (st) break; } Printf (i=%d\ns=%d\n, I, s); } T=8 -- I=1, s=1 I=2, s=3 I=3, s=6 I=4, s=10 1.3. nested break statements: --- write function, output all the prime numbers between 500--800, each line for 10 groups for output. #include stdio.h Void, main () {int, I, J, flag, k=0; For (i=500; i=800; i++) {flag=1; For (j=2; ji; j++); if (i%j==0) {flag=0; break;} If (flag==1) {printf (%5d, I); k++; If (k%10==0) printf (\n); } } Printf (\nk=%d\n, K); } 2.1, continue statement function: skip the following statements that have not been executed in this layer and proceed to the next cycle. 2.2 example: #include stdio.h Void, main () {int, I, s=0, k=0; For (i=1; i=5; i++) {s+=i; If (s8), {printf (****i=%d, s=%d, k=%d\n, I, s, K); continue;} K+=s; Printf (i=%d, s=%d, k=%d\n, I, s, K); } } I=1, s=1, k=1 I=2, s=3, k=4 I=3, s=6, k=10 ****i=4, s=10, k=10 ****i=5, s=15, k=10 The third part: character input and output Taking the basic data types in C language: integer, real, character --- char ch; Ch=0ch=9 Ch=Ach=Z Ch=ach=z 3.1 character inputs and outputs: (1) call printf and scanf --printf function: * * * in the C language, the form character%c is used to implement character output. Such as: #include stdio.h Void, main () {char ch; Ch=A; Printf (ch=%c\n, CH); } --scanf function: * * * is als

文档评论(0)

f8r9t5c + 关注
实名认证
文档贡献者

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

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档