韩顺平0基础学Java——第7天

p110-p154

控制结构(第四章)

多分支

if-elseif-else

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner myscanner = new Scanner(System.in);System.out.println("input your score?");int score = myscanner.nextInt();if(score==100){System.out.println("excellent!!");}else if (score<=99&&score > 80){System.out.println("GOOD~~");}else if (score<=80&&score>=60){System.out.println("ok");}else{System.out.println("not ok!!");}System.out.println("go on...your score is\t"+score);}
}

但是你输入110的时候也会报不及格哎!我怎么没想到...所以我们先对输入的信用分进行有效判断

如果用户输入的是hello咋整捏?好吧听说后面会讲...(异常处理)

案例:

输出b啊

嵌套分支

建议不要超过3层。

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner myscanner = new Scanner(System.in);System.out.println("input your score?");double score = myscanner.nextDouble();System.out.println("input your gender?(man/woman)");String gender = myscanner.next();if(score>8.0){if (gender.equals("man")){System.out.println("you will go to man's final competition");}else if(gender.equals("woman")){System.out.println("you will go to woman's final competition");}}else{System.out.println("youe are fired!");}System.out.println("go on...your score is\t"+score);}
}

练习:

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner myscanner = new Scanner(System.in);System.out.println("input your age?");int age = myscanner.nextInt();System.out.println("input the month(like 1,2,3,4...)");int month = myscanner.nextInt();if(month>=4&&month<=10){System.out.println("it's wangji");if (age<18&&age>0){System.out.println("you are kid,give me 30 yuan");}else if(age>=18&&age<60){System.out.println("you are adult, give me 60 yuan");}else if(age>=60){System.out.println("you are elder, give me 20 yuan");}else {System.out.println("your age is a problem");}}else if ((month<4&&month>=1)||(month>10&&month<=12)){System.out.println("it's danji");if(age>=18&&age<60){System.out.println("you are adult, give me 40 yuan");}else if(age>=0&&age<18||age>=60){System.out.println("your are not adult, give me 20 yuan");}}else{System.out.println("your month is a problem");}System.out.println("go on...");}
}

switch分支

学过了,敲下练习吧。

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner myscanner = new Scanner(System.in);System.out.println("input a/b/c/d/e/f/g?");char c = myscanner.next().charAt(0);switch(c){case('a'):{System.out.println("feiju1");break;}case('b'):{System.out.println("2");break;}default:System.out.println("=====");}}}

细节讨论:

1.表达式的数据类型,应该和case后的常量类型一致,或者可以自动转换的(比如char和int)

2.switc(表达式)中表达式的返回值必须是byte,short,int,char,enum[],String中的类型。注意enum[]是枚举

3.case子句中必须是常量,或者常量表达式,不能有变量。

4.default是可选的,也可以没有

5.遇到break会退出程序,不遇到会继续执行下面的。

练习:

穿透怎么用啊?好家伙第一次见。

for循环

for(循环变量初始化;循环条件;循环变量迭代){

        循环操作;

}

细节

1.循环条件是返回一个布尔值的表达式

2.for(;条件;)中的初始化和变量迭代是可以写到外面的,但是里面的分号不能省。

3.循环初始值可以有多条初始化语句,但是要求类型一样,并且中间用逗号隔开,迭代也可以有多条

4.输出啥?

i=0,j=0

i=1,j=2

i=2,j=4

练习:

1.

import java.util.Scanner;
public class day7{public static void main(String[] args) {int j=0,sum=0;for(int i=1;i<=100;i++){if(i%9==0){System.out.println(i);j++;sum+=i;}}System.out.println("you zhe me duo ge:"+j+"\nsum is:"+sum);}}

2.

public class day7{public static void main(String[] args) {for(int i=0,sum=5;i<6;i++,sum--){System.out.println(i+"+"+sum+"="+(i+sum));}}}

老师这个更妙啊:

while循环

这个之前用的也不太好..基本语法如下.细节:while先判断再执行。

循环变量初始化;

while(循环条件){

        循环体(语句);

        循环变量迭代;

}

练习:

1.

import java.util.Scanner;
public class day7{public static void main(String[] args) {int i = 1;while(i<=100){if(i%3==0)System.out.println(i);i++;}}}

2.

import java.util.Scanner;
public class day7{public static void main(String[] args) {int i = 40;while(i<=200){System.out.println(i);i+=2;}}}

吃个饭回来在搞》。。

do...while循环控制

语法:

循环变量初始化;

do{

        循环体;

        循环变量迭代;

}while(循环条件);

说明:先执行,再判断,也就是说一定会至少执行一次。

练习:

import java.util.Scanner;
public class day7{public static void main(String[] args) {int i = 1;System.out.println("1st question");do{System.out.println(i++);}while(i<=100);System.out.println("2nd question");int k = 1,sum = 0;do{sum+=k++;System.out.println(sum);}while(k<=100);System.out.println("3th question");int j = 1,count = 0;do{if(j%5==0&&j%3!=0)count++;j++;}while(j<=200);System.out.println(count);System.out.println("4th question");Scanner myscn = new Scanner(System.in);char m;do{System.out.println("huan qian? y/n");m = myscn.next().charAt(0);}while(m!='y');System.out.println("good boy");}
}

老师:好一个先兵后礼,不管还不还钱,先打了再说是吧?

多重循环练习(重点)

1.

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner mysc = new Scanner(System.in);int s1=0,s2=0;for(int i=0;i<3;i++){for(int j=0;j<5;j++){System.out.println("input score of "+(i+1)+" class's the "+(j+1)+" student");s1+=mysc.nextInt();}System.out.println("the "+(i+1)+"class's average is "+((double)s1/5));s2+=s1;s1=0;}System.out.println("all classes's average is "+((double)s2/15));}
}

2.

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner mysc = new Scanner(System.in);int s1=0,s2=0;for(int i=0;i<3;i++){for(int j=0;j<5;j++){System.out.println("input score of "+(i+1)+" class's the "+(j+1)+" student");if(mysc.nextInt()>=60)s1++;}System.out.println("the "+(i+1)+"class's ok student is "+s1);s2+=s1;s1=0;}System.out.println("all classes's ok student is "+s2);}
}

3.原来System.out.print();就是不换行啊~~

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner mysc = new Scanner(System.in);int s1=1,s2=1;for(int i=1;i<=9;i++){for(int j=1;j<=i;j++){System.out.print(j+"*"+i+"="+i*j+"\t");}}System.out.println("over");}
}

练习:空心金字塔

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner mysc = new Scanner(System.in);System.out.println("input the layer?");//x=layerint x=mysc.nextInt();for(int i=1;i<=x;i++){for(int j=0;j<x-i;j++)System.out.print(" ");for(int j=1;j<=2*i-1;j++){if(j==1||j==2*i-1||i==x)System.out.print("*");elseSystem.out.print(" ");}System.out.print("\n");}}
}

真累人...讲解有点意思0136_韩顺平Java_空心金字塔_哔哩哔哩_bilibili

尝试打印空心菱形:(成功了,虽然折腾了半天因为少写个等号,然后丢给ai立马跑出来,救命,我真的学得会吗?)

跳转控制语句break

当break语句出现在多层嵌套的语句中时,可以使用标签指明要终止的是哪一层语句块。

例题:

抽卡无保底现状:

import java.util.Scanner;
public class day7{public static void main(String[] args) {int x = 0,sun = 0;do{x=(int)(Math.random()*100)+1;if(x==97){System.out.println("x is " + x + "! get it need " + sun + " times~");System.out.println("=============");break;}elseSystem.out.println("x is "+x+" already "+ sun +" times");sun++;}while(true);}
}

练习:

第一题:

结果是6

第二题:

字符串的比较推荐使用:

可以避免空指针。

continue

用于结束本次循环,继续执行下一次循环。和break一样,可以制定label,例:

01010101

如果continue label2的话是013456789循环4次

return

表示跳出所在的方法,在讲解方法的时候,会详细的介绍,如果return写在main里,会退出程序

本例中,return在主方法(main)中,所以退出程序了,只会输出

hello

hello

韩顺平

本章作业

第一题

贴心的询问了你有多少钱,好收保护费。

import java.util.Scanner;
public class day7{public static void main(String[] args) {Scanner mysc = new Scanner(System.in);System.out.println("input your money");double money = mysc.nextDouble();int count = 0;while(true){if(money>50000){money*=0.95;count++;}else if(money>=1000&&money<=50000){money-=1000;count++;}else{break;}}System.out.println(count);}
}

第二题

import java.util.Scanner;public class day7 {public static void main(String[] args) {Scanner mysc = new Scanner(System.in);System.out.println("input your integer~");int x = mysc.nextInt();if (x > 0) {System.out.println("zhengshu");} else if (x < 0) {System.out.println("fushu");} else {System.out.println("0");}mysc.close(); }
}

第三题

  1. 如果年份能被4整除且不能被100整除,那么它是闰年。
  2. 如果年份能被400整除,那么它也是闰年。
import java.util.Scanner;public class day7 {public static void main(String[] args) {Scanner mysc = new Scanner(System.in);System.out.println("input your year~");int x = mysc.nextInt();if ((x % 4==0&&x % 100 != 0)||(x%400==0)) {System.out.println("run nian");}  else {System.out.println("no run nian");}mysc.close(); }
}

第四题

import java.util.Scanner;public class day7 {public static void main(String[] args) {Scanner mysc = new Scanner(System.in);System.out.println("input your integer(abc)~");int x = mysc.nextInt();int a=0,b=0,c=0;a=x/100;b=(x-100*a)/10;c=(x-100*a-10*b);if(x==a*a*a+b*b*b+c*c*c){System.out.println("yes!");}else{System.out.println("no");}mysc.close(); }
}

还有这种写法:

学到惹

第五题

啥都不输出啊

第六题

public class day7 {public static void main(String[] args) {for(int i=1;i<=100;i++){int count = 0;while(count<5){if(i%5!=0){System.out.print(i + "\t");count++;}i++;}System.out.println();}}
}

老师:

不嵌套也可以哈~

第七题

输出的时候可以强制转换一下就不会出数字了!

import java.util.Scanner;public class day7 {public static void main(String[] args) {// Scanner mysc = new Scanner(System.in);// System.out.println("input your integer(abc)~");// int x = mysc.nextInt();char c1 = 'a';char c2 = 'Z';for(int i=0;i<26;i++)System.out.print((char)(c1+i));System.out.println();for(int i=0;i<26;i++)System.out.print((char)(c2-i));// mysc.close(); }
}

第八题

注意一下sum和flag都是整数,转成double才好算~

import java.util.Scanner;public class day7 {public static void main(String[] args) {// Scanner mysc = new Scanner(System.in);// System.out.println("input your integer(abc)~");// int x = mysc.nextInt();double sum = 0;int flag=1;for(int i=1;i<=100;i++){sum+=(double)flag/i;flag*=-1;}System.out.println(sum);// mysc.close(); }
}

第九题

import java.util.Scanner;public class day7 {public static void main(String[] args) {// Scanner mysc = new Scanner(System.in);// System.out.println("input your integer(abc)~");// int x = mysc.nextInt();int s1 = 0;for(int i =1;i<=100;i++){for(int j=1;j<=i;j++){s1+=j;}}System.out.println(s1);// mysc.close(); }
}

这个思路妙啊!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/9319.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

什么是Jetpack

Jetpack Jetpack 是一套组件库、工具&#xff0c;可帮助开发人员遵循最佳做法&#xff0c;减少样板代码并编写可在 Android 版本和设备上一致工作的代码&#xff0c;以便开发人员可以专注于他们关心的代码 组成 主要包含四部分&#xff1a;架构&#xff08;Architecture&…

Linux:进程通信(三)信号的捕捉

目录 一、信号捕捉函数 1、signal函数 2、sigaction函数 二、用户态与内核态 1、用户态 2、内核态 用户态与内核态转换 三、volatile关键字 四、SIGCHLD信号 一、信号捕捉函数 1、signal函数 signal函数是C语言标准库中的一个函数&#xff0c;用于处理Unix/Linux系…

Ps 滤镜:其它

Ps菜单&#xff1a;滤镜/其它 Filter/others “其它”子菜单中的滤镜允许创建自己的滤镜、使用滤镜修改蒙版、在图像中使选区发生位移和快速调整颜色。 HSB/HSL HSB/HSL 主要用于实现 RGB、HSB 及 HSL 三种模型的相互转换。 比如&#xff0c;当执行本滤镜从 RGB 转换为 HSB 之后…

YOLOv8网络结构介绍

将按照YOLOv8目标检测任务、实例分割任务、关键点检测任务以及旋转目标检测任务的顺序来介绍&#xff0c;主要内容也是在目标检测任务中介绍&#xff0c;其他任务也只是Head层不相同。 1.YOLOv8_det网络结构 首先&#xff0c;YOLOv8网络分成了三部分&#xff0c;分别是主干网络…

接口信息解析

在进行浏览器网站的接口测试时&#xff0c;需要解析以下关键信息以确保接口的正确性和性能&#xff1a; 1. 接口地址&#xff08;URL&#xff09;&#xff1a; 接口的地址是测试的基础&#xff0c;包括接口的协议&#xff08;如 HTTP 或 HTTPS&#xff09;、主机名、端口&…

自动控制原理学习--平衡小车的控制算法(三)

上一节PID的simulin仿真&#xff0c;这一节用LQR 一、模型 二、LQR LQR属于现代控制理论的一个很重要的点&#xff0c;这里推荐B站的【Advanced控制理论】课程&#xff08;up主DR_CAN&#xff09;&#xff0c;讲得很好&#xff0c;这里引用了他视频里讲LQR的ppt。 LQR属于lo…

(三)小程序样式和组件

视频链接&#xff1a;尚硅谷2024最新版微信小程序 文章目录 小程序的样式和组件介绍样式-尺寸单位 rpx样式-全局样式和局部样式组件-组件案例演示组件案例-轮播图区域绘制组件案例-轮播图图片添加组件案例-绘制公司信息区域组件案例-商品导航区域组件案例-跳转到商品列表组件案…

python爬取sci论文等一系列网站---通用教程超详细教程

环境准备 确保安装了Python以及requests和BeautifulSoup库。 pip install requests beautifulsoup4确定爬取目标 选择一个含有SCI论文的网站&#xff0c;了解该网站的内容布局和数据结构。 &#xff08;1&#xff09;在浏览器中访问目标网站&#xff0c;右键点击页面并选择…

案例研究|硬之城借助DataEase以数据驱动供应链精细化管理

深圳硬之城信息技术有限公司&#xff08;以下简称为“硬之城”&#xff09;成立于2015年&#xff0c;专注电子元件供应链领域&#xff0c;定位于电子产业供应链与智造平台。硬之城通过名为“Allchips”的集成式服务平台&#xff0c;为客户提供一站式的电子元件采购和供应链管理…

VTK 建模方法:建模基础

VTK 建模方法&#xff1a;建模基础 VTK 建模方法&#xff1a;建模基础VTK 中模型的表达实例1&#xff1a;自定义 vtkPolyData实例2&#xff1a;vtkTubeFilter实例3&#xff1a;vtkImplicitModeller实例4&#xff1a;vtkRegularPolygonSource实例5&#xff1a;vtkWarpTo VTK 建模…

如何在mac电脑安装 Android SDK

1、在 Mac 电脑上安装 Android SDK 的步骤如下: 前往 Android 开发者网站下载 Android SDK 打开 Android 开发者网站 (https://developer.android.com/studio) 打开下载好的 Android SDK 安装包 2、解压 Android SDK 安装包 打开下载好的 Android SDK 安装包 将 android-…

深度主动学习(Deep Active Learning)——基于pytorch和ALipy工具包实现双向GRU模型

前言 在ALipy的官网说ALipy只支持sklearn和tensorflow模型&#xff0c;模型对象应符合 scikit-learn api。 但是alipy提供了ToolBox的工具箱&#xff0c;里面包装了多种查询策略&#xff0c;计算指标等工具&#xff0c;几乎具有Alipy的全部功能&#xff0c;虽然不能使用ALipy提…

Pycharm2024版,更换安装源

1、选择Python Packages 2、点击图中的小齿轮 3、点击 号 4、添加源地址 常用源如下&#xff1a; 清华&#xff1a;https://pypi.tuna.tsinghua.edu.cn/simple 阿里云&#xff1a;http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn…

HTML5 Canvas发光Loading动画特效源码

源码介绍 之前我们分享过很多基于CSS3的Loading动画效果&#xff0c;相信大家都很喜欢。今天我们要来分享一款基于HTML5 Canvas的发光Loading加载动画特效。Loading旋转图标是在canvas画布上绘制的&#xff0c;整个loading动画是发光3D的视觉效果&#xff0c;HTML5非常强大。 …

索引失效情况

&#x1f4dd;个人主页&#xff1a;五敷有你 &#x1f525;系列专栏&#xff1a;面经 ⛺️稳中求进&#xff0c;晒太阳 一、索引列上运算操作。 不要在索引列上进行运算操作&#xff0c;否则索引会失效。 在tb_user的phone列加上索引&#xff0c;然后进行条件查询&am…

nginx自动部署-跨操作系统

项目里面有一个需求&#xff0c;就是需要用让nginx进程提供给系统管理一个start,stop和getPid方法&#xff0c;这样系统管理可以自动拉起来nginx&#xff0c;达到自动部署的目的。离线部署同样适用 这样一来&#xff0c;我就需要提供windows版本linux不同版本的nginx源码包&am…

解决Vue devtools插件数据变化不会自动刷新

我们使用devtools插件在监测vuex中表单或自定义组件的数据&#xff0c;发现页面数据发生变化后&#xff0c;但是devtools中还是老数据&#xff0c;必须手动点击devtools刷新才能拿到最新的数据。很烦&#xff01; 解决方案&#xff1a; 打开chrome的设置&#xff0c;向下翻&…

JavaEE企业级开发中常用的Stream流

介绍 在Java编程中&#xff0c;Stream流是Java 8引入的一个重要概念&#xff0c;它提供了一种新的处理集合的方式&#xff0c;可以更加简洁、高效地进行数据操作。Stream流支持各种常见的操作&#xff0c;比如过滤、映射、排序、聚合等&#xff0c;同时也支持并行处理&#xf…

自学错误合集--MessageSource国际化接口

java后端自学错误总结 一.MessageSource国际化接口总结 一.MessageSource国际化接口 今天第一次使用MessageSource接口,比较意外遇到了一些坑 messageSource是spring中的转换消息接口&#xff0c;提供了国际化信息的能力。MessageSource用于解析 消息&#xff0c;并支持消息的…

软件项目管理期末复习题8-16章

第八章软件项目质量计划 一、填空题 1、&#xff08;审计&#xff09;是对过程或产品的一次独立质量评估。 2、质量成本包括预防成本和&#xff08;缺陷成本&#xff09;。 3、&#xff08;软件质量&#xff09;是软件满足明确说明或者隐含的需求的程度。 5、McCall质量模…