- 1、本文档共47页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
java概述课件 04 循环讲义教材.ppt
1
第 4 章 循环
4
引入循环
int count = 0;
while (count 100) {
System.out.println(Welcome to Java);
count++;
}
5
学习目标
● 使用while循环编写重复执行某些语句的程序(4.2节)。
● 开发程序GuessNumber和SubtractionQuizLoop(4.2.1节)。
● 遵循循环设计策略来开发循环(4.2.2节)。
● 开发程序SubtractionQuizLoop(4.2.3节)。
● 使用标志值控制循环(4.2.4节)。
● 使用输入重定向而不是从键盘输入以获取大量输入(4.2.4节)。
● 使用do-while 语句编写循环 (4.3节)。
● 使用for语句编写循环(4.4节)。
● 了解三种类型循环语句的相似处和不同点 (4.5节)。
● 编写嵌套循环(4.6节)。
● 学习最小化数值误差的技术 (4.7节)。
● 从多种多样的例子 (GCD, FutureTuition, MonteCarloSimulation) 中学习循环(4.8节)。
● 使用break 和 continue 来实现程序的控制(4.9节)。
● (GUI) 使用确定对话框控制循环(4.10节)。
6
while 循环流程图
while (循环继续条件) {
// 循环体;
语句(组);
}
int count = 0;
while (count 100) {
System.out.println(Welcome to Java!);
count++;
}
7
跟踪while循环
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
初始化计算
8
跟踪while循环,续。
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
(count 2) 为真
9
跟踪while循环,续。
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
输出 Welcome to Java
10
跟踪while循环,续。
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
count 增加1
count 现在为1
11
跟踪while循环,续。
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
(count 2) 当count 为1,仍然为真。
12
跟踪while循环,续。
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
输出Welcome to Java
13
跟踪while循环,续。
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
count 增加1
count 现在为2
14
跟踪while循环,续。
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
(count 2) 当count为2时,为假
15
跟踪while循环
int count = 0;
while (count 2) {
System.out.println(Welcome to Java!);
count++;
}
退出循环,执行下一个语句
16
问题: GuessNumber
编写一个程序,随机产生一个0到100之间且包含0和100的整数。程序提示用户连续输入一个数字,直到它和计算机随机产生的数字相匹配为止。对用户每次输入的数字,程序都要告诉用户该输入值是太大了,还是太小了,
您可能关注的文档
- introduction to management—chapter12讲义教材.ppt
- introduction to management—chapter8讲义教材.ppt
- introduction to management—mag111_2018it_2018fall讲义教材.ppt
- Invitation&tankyou letter 商务英语写作教学课件培训讲学.ppt
- ios8小清新简洁图标模板讲义教材.ppt
- IPD集成产品开发管理教学讲义.ppt
- iPhone iCloud 故障诊断知识讲稿.ppt
- iPhone 4S iCloud 故障诊断教程PPT知识讲稿.ppt
- IPMP认证提升人员能力推动企业创建卓越的项目化管理模式教学讲义.ppt
- IPO上市实务之二-上市政策与环境分析幻灯片资料.ppt
文档评论(0)