《Java程序设计案例教程(微课版)》实验五 while与do-while语句.docx
《《Java程序设计案例教程(微课版)》实验五 while与do-while语句.docx》由会员分享,可在线阅读,更多相关《《Java程序设计案例教程(微课版)》实验五 while与do-while语句.docx(2页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、实验五 while与do-while语句一、实验目的1、掌握while与do-while语句的结构;2、掌握简单的循环设计方法。二、实验内容1、分别使用while, do-while语句实现求1100的和。源程序:public class Main public static void main(String args) int sum =0, i = 1;while (i 101) sum += i;i+;)System.out.printIn(sum);sum = 0;i = 1;do sum += i;i+; while (i 101);System.out.printIn(sum);)
2、2、实现求5!源程序:public class Main public static void main(String args) long j=ll;for(int i=l;i6;i+) J*=1J)System.out.println(j);)3、实现求该数列前20项的和:1, 1, 2, 3, 5, 8, 13, 21, 34, 源程序:public class Main public static void main(String args) int tl = 1, t2 = 1, t3 = 0;for (int i = 1; i = 0) i+;h += a; else System
3、. out. print In (Mn);break;)p = h / i;(平均数为+ p);sc.close();)5、猜数游戏:让用户猜数,一直到猜对为止。在最后提示是猜了几次猜对的。 源程序:import java.util.Scanner;public class Main public static void main(String args) int t = 0;Scanner sc = new Scanner(System.in);int a = (int) (Math.randow() * 100) + 1;(系统以施机生成1-100,请猜这个数是多少“); while (true) t+;System. out.print In (你猜的这个数是:);int b = sc.nextlnt();if (a b) System . out. print In (“猜小了 ”); else if (a b) System, out. printin(猜大了”); else System.out. printin(恭喜你猜对了”); break;)(你一共猜了“ + t + “次”); sc.close();)三、实验总结
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Java程序设计案例教程微课版 Java程序设计案例教程微课版 实验五 while与do-while语句 Java 程序设计 案例 教程 微课版 实验 while do 语句
限制150内