



全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
这节课我们又要讲语法了 这是 百家拳软件项目研究室 这部教程的第 6 节 课 我们这个教程侧重的是实践的内容和语言的重点 在 java 语言中还有很多 细节的东西 请参考 sun 公司的官方培训教程 我们这里不能一一讲述 这节 课我们来给大家提供一些程序流程控制的一些例子供大家学习 计算机怎么做 事情 是我们教给他的 我们用它解决实际生活中的问题 所以计算机要描述 现实生活中的流程 Java语言中提供了 4 类程序控制语句 来描述流程 1 循环语句 while do while for 2 分支语句 if else switch 3 跳转语句 break continue label 和 return 4 异常处理语句 try catch finally throw 实践 实践 1 循环语句 while 语句 class While public static void main String args int n 10 while n 0 System out println tick n n do while 语句 class DoWhile public static void main String args int n 10 do System out println tick n n while n 0 二者区别 do while 至少循环一次 而 while 的表达式要是为 flase 的 话可以一次也不循环 再通俗一点 do while 就算是括号里的是 flase 人家 最少也能 do 一次 for 语句 class ForTick public static void main String args int n for n 10 n 0 n System out println tick n 与上面那两个的区别 for 循环执行的次数是可以在执行之前确定的 通 俗一点说吧 看这个例子 for n 10 n 0 n 就是在括号里的时候 就 已经知道要循环 10 次了 还有啊 for 循环的部分可以为空的 class ForVar public static void main String args int i boolean done false i 0 for done System out println i is i if i 10 done true i 下载 href target blank 循环语句的例子循环语句的例子下载下载 2 分支语句 if else 语句 class IfElse public static void main String args int month 4 April String season if month 12 month 1 month 2 season Winter else if month 3 month 4 month 5 season Spring else if month 6 month 7 month 8 season Summer else if month 9 month 10 month 11 season Autumn else season Bogus Month System out println April is in the season 这段程序输出 April is in the Spring 注意 是或运算 switch 语句 class Switch public static void main String args int month 4 String season switch month case 12 case 1 case 2 season Winter break case 3 case 4 case 5 season Spring break case 6 case 7 case 8 season Summer break case 9 case 10 case 11 season Autumn break default season Bogus Month System out println April is in the season 下载 href target blank 分支语句代
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 高端系统门窗合同范本
- 房产采购家电合同范本
- 外贸劳务英文合同范本
- 咳嗽变异性哮喘雾化吸入护理查房
- 包子店劳务合同范本
- 毛坯租房合同范本
- 模具快速原型制作合同
- 房屋自动延续合同范本
- 装卸及安装合同范本
- 地瓜基地采购合同范本
- 桥梁安全保护区管理制度
- 学堂在线 大学生国家安全教育 章节测试答案
- 2025至2030中国增强型飞行视觉系统行业发展趋势分析与未来投资战略咨询研究报告
- 华文版二年级上册-写字-书法
- 学堂在线 数据结构(上) 章节测试答案
- 安全文明生产的保证措施
- 车辆运输安全培训
- 工贸企业安全培训课件
- 长沙市太平街、西文庙坪历史文化街区保护提升项目可行性研究报告
- 业绩分红方案(3篇)
- 中国金属材料检测服务行业市场占有率及投资前景预测分析报告
评论
0/150
提交评论