我是靠谱客的博主 文静香烟,最近开发中收集的这篇文章主要介绍Java基础题练习(switch多选择结构的使用、white循环中++的使用、white循环中输入分数游戏),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
switch多选择结构的使用代码如下: public class Practice10 { public static void main(String[] args) { Scanner in=new Scanner(System.in); System.out.println("请输入分数:"); int score =in.nextInt(); int xm =(int)score/10; switch (xm){ case 9: System.out.println("1个小时"); break; case 8: System.out.println("半个小数"); break; case 7: System.out.println("15分钟"); break; default: System.out.println("没了!"); } } }
代码截图如下:
white循环中++的使用代码如下:
public class Practice11 { public static void main(String[] args) { int i =0; while(i<=10){ System.out.println("i="+i); ++i; } } }
代码截图如下:
white循环中输入分数游戏代码如下:
public class Practice12 { public static void main(String[] args) { int flag=1; double score=0; Scanner in=new Scanner(System.in); while (flag!=0){ System.out.println("请输入成绩:"); score=in.nextDouble(); System.out.println("你刚才输入的成绩为:"+score); System.out.println("是否还要输入?(按0结束,按其它数字继续)"); flag=in.nextInt(); } } } 截图如下:
最后
以上就是文静香烟为你收集整理的Java基础题练习(switch多选择结构的使用、white循环中++的使用、white循环中输入分数游戏)的全部内容,希望文章能够帮你解决Java基础题练习(switch多选择结构的使用、white循环中++的使用、white循环中输入分数游戏)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复