首页
关于
友链
Search
1
java project 客户管理信息软件
129 阅读
2
java学习笔记10
114 阅读
3
java学习笔记12
109 阅读
4
java学习笔记1
103 阅读
5
java学习笔记11
98 阅读
默认分类
程序设计
java
vue前端
java学习笔记
java练习
java工程
登录
Search
标签搜索
java
java基础
学习笔记
练习
类
java进阶
数组
循环
vue
工程
helloworld
注释
关键字
变量
基本数据类型
选择
String
进制
运算符
Scanner
bandao
累计撰写
19
篇文章
累计收到
1
条评论
首页
栏目
默认分类
程序设计
java
vue前端
java学习笔记
java练习
java工程
页面
关于
友链
搜索到
2
篇与
的结果
2021-11-27
java学习笔记5
{music id="1848243289" color="#1989fa" autoplay="autoplay"/}程序流程控制顺序结构分支结构循环结构输入Scanner具体步骤导包:import java.util.Scanner;Scanner的实例化:Scanner scan = new Scanner(System.in);调用Scanner类的相关方法(next() / nextXxx()),来获取指定类型的变量java代码//1.导包:import java.util.Scanner; import java.util.Scanner; public class ScannerTest { public static void main(String[] args) { //2.Scanner的实例化 Scanner scan = new Scanner(System.in); //3.调用Scanner类的相关方法 System.out.println("请输入姓名:"); String name = scan.next(); System.out.println(name); System.out.println("请输入你的芳龄:"); int age = scan.nextInt(); System.out.println(age); System.out.println("请输入"); double weight = scan.nextDouble(); System.out.println(weight); System.out.println("你是否相中我了呢?(true/false)"); boolean isLove = scan.nextBoolean(); System.out.println(isLove); //对于char型的获取,Scanner没有提供相关的方法。只能获取一个字符串 System.out.println("请输入你的性别:(男/女)"); String gender = scan.next(); char genderChar = gender.charAt(0);//获取索引为0位置上的字符 System.out.println(genderChar); } }3. Tip:需要根据相应的方法,来输入指定类型的值。 如果输入的数据类型与要求的类型不匹配时,会报异常:InputMisMatchException,导致程序终止。1. 分支结构(if——else)1. 三种结构第一种:if(条件表达式){ 执行表达式 }第二种:二选一if(条件表达式){ 执行表达式1 }else{ 执行表达式2 }第三种:n选一if(条件表达式){ 执行表达式1 }else if(条件表达式){ 执行表达式2 }else if(条件表达式){ 执行表达式3 } ... else{ 执行表达式n }2. java代码public class IfTest { public static void main(String[] args) { int heartBeats = 67; if(heartBeats < 60 || heartBeats > 100){ System.out.println("需要进一步检查"); } System.out.println("检查结束"); int age = 23; if(age < 18){ System.out.println("可以看动画片了"); }else { System.out.println("可以看大动画片了"); } if(age < 0){ System.out.println("输入的数据非法"); }else if(age < 18){ System.out.println("青少年模式"); }else if(age < 35){ System.out.println("青壮年模式"); }else if(age < 60){ System.out.println("中年模式"); }else if(age < 120){ System.out.println("老年模式"); }else if(age > 120){ System.out.println("成仙模式"); } } }3. Tipelse 结构是可选的。针对于条件表达式:如果条件表达式之间没有交集的关系,判断和执行语句声明与在上面还是下面无关。如果条件表达式之间有交集的关系,需要根据实际情况,考虑清楚应该将哪个结构声明在上面。如果条件表达式之间有包含的关系,需要将范围小的声明在范围大的上面。否则,范围小的就不会执行了。if-else结构是可以相互嵌套的。if-else结构中的执行语句只有一行时,对应的{}可以省略的。但是,不建议大家省略。2. 分支结构(switch-case)1. 结构switch(表达式){ case 常量1: 执行语句1; //break; case 常量2: 执行语句2; //break; ... default: 执行语句n; //break; }2. java代码public class SwitchCaseTest { public static void main(String[] args) { String season = "summer"; switch (season){ case "spring": System.out.println("春暖花开"); break; case "summer": System.out.println("夏日炎炎"); break; case "autumn": System.out.println("秋高气爽"); break; case "winter": System.out.println("冬雪皑皑"); break; default: System.out.println("季节输入有误"); break; } } }//从键盘分别输入年、月、日,判断这一天是当年的第几天 import java.util.Scanner; public class SwitchCaseExer { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("请输入year:"); int year = scan.nextInt(); System.out.println("请输入month:"); int month = scan.nextInt(); System.out.println("请输入day:"); int day = scan.nextInt(); //定义一个变量来保存总天数 int sumDays = 0; switch(month){ case 12: sumDays += 30; case 11: sumDays += 31; case 10: sumDays += 30; case 9: sumDays += 31; case 8: sumDays += 31; case 7: sumDays += 30; case 6: sumDays += 31; case 5: sumDays += 30; case 4: sumDays += 31; case 3: if((year % 4 == 0 && year % 100 != 0) || year % 400 == 0){ sumDays += 29; }else { sumDays += 28; } case 2: sumDays += 31; case 1: sumDays += day; } System.out.println(year + month + "月" + day + "日是当年的第" + sumDays + "天"); } }3. Tip根据switch中的值,依次匹配各个case中的常量。匹配成功后,则进入相应case中。当调用完执行语句以后,则仍然继续向下执行其他case结构中的执行语句,直到遇到break关键字或此switch-case结构末尾结束为止。break在switch-case结构中,表示遇到此关键字后,就跳出switch-case结构switch结构中的表达式,只能是如下的6种数据类型之一: byte 、short、char、int、枚举类型(JDK5.0新增)、String类型(JDK7.0新增)case 后面只能放常量,不能放范围。(case age > 18:)break关键字是可选的。default:相当于if-else结构中的else。default结构是可选的,而且位置是灵活的。凡是可以使用switch-case的结构,都可以用if-else。反之,不成立。我们写分支结构时,当发现既可以使用switch-case,(而且,switch中表达式的取值情况不太多), 又可以使用if-else时,我们优先用switch-case。原因:switch-case执行效率稍高。3. 循环结构(for循环)1. 结构① 初始化条件 ② 循环条件 --->是boolean类型 ③ 循环体 ④ 迭代条件 for(①;②;④){ ③ } 执行过程:① - ② - ③ - ④ - ② - ③ - ④ - ... - ②2.java代码public class ForTest { public static void main(String[] args) { for (int i = 0; i < 5; i++){ System.out.println(i + " hello world"); } int num = 1; //abcbcbc for(System.out.print('a'); num <= 3; System.out.print('c'), num++){ System.out.print('b'); } System.out.println(); //遍历100以内的偶数,输出所有偶数的和,输出偶数的个数 int sum = 0; int count = 0; for (int i = 1; i <= 100; i++) { if(i % 2 == 0){ //System.out.println(i); sum += i; count++; } } System.out.println("总和为:" + sum); System.out.println("个数为:" + count); } }4. 循环结构(while循环)1. 结构① 初始化条件 ② 循环条件 --->是boolean类型 ③ 循环体 ④ 迭代条件 ① while(②){ ③; ④; } 执行过程:① - ② - ③ - ④ - ② - ③ - ④ - ... - ②2. java代码public class WhileTest { public static void main(String[] args) { int i = 2; while (i <= 100){ if(i % 2 == 0){ System.out.println(i); } i++; } //循环外,仍然有i System.out.println(i);//101 } }3.Tip写while循环记得要写迭代条件。一旦丢了,就可能导致死循环,我们要避免出现死循环。for循环和while循环是可以相互转换的! 区别:for循环和while循环的初始化条件部分的作用范围不同。5. 循环结构(do while循环)1. 结构① 初始化条件 ② 循环条件 --->是boolean类型 ③ 循环体 ④ 迭代条件 ① do{ ③; ④; }while(②); 执行过程:① - ③ - ④ - ② - ③ - ④ - ... - ②2. java代码public class DoWhileTest { public static void main(String[] args) { //遍历100以内的偶数,并计算所有偶数的和及偶数的个数 int num = 1; int sum = 0; int count = 0; do { if(num % 2 == 0){ System.out.println(num); sum += num; count++; } num++; }while (num <= 100); System.out.println("总和为:" + sum); System.out.println("个数为:" + count); //do-while至少执行一次循环体 int number1 = 10; while (number1 >10){ System.out.println("while"); number1--; } int number2 = 10; do { System.out.println("do_while"); number2--; }while (number2 > 10); } }3. Tipdo-while循环至少会执行一次循环体!开发中,使用for和while更多一些。较少使用do-while6. 最简单“无限” 循环格式while(true) , for(;;),无限循环存在的原因是并不知道循环多少次, 需要根据循环体内部某些条件,来控制循环的结束。//从键盘读入个数不确定的整数,并判断读入的正数和负数的个数,输入为0时结束程序。 import java.util.Scanner; public class ForWhileTest { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int positiveNumber = 0; //正数的个数 int negativeNumber = 0; //负数的个数 while (true){ //for (;;) int number = scanner.nextInt(); if(number > 0){ positiveNumber++; }else if(number < 0){ negativeNumber++; }else { break; } } System.out.println("正数: " + positiveNumber); System.out.println("负数:" + negativeNumber); } }结束方法循环条件部分返回false在循环体中,执行break
2021年11月27日
57 阅读
0 评论
1 点赞
2021-11-14
java练习1
一.例题1.打印三角形效果:代码:public class triangle { public static void main(String[] args){ //public private for (int i = 0; i < 5; i++){ for (int j = 0; j <= i; j++){ System.out.print("*"); } System.out.println(); } } }结果:* ** *** **** *****2.打印三角形pro效果:代码1:在第一个的基础上另外循环一次,补出来下面的部分public class trianglepro { public static void main(String[] args){ for (int i = 0; i < 5; i++){ for (int j = 0; j <= i; j++){ System.out.print("*"); } System.out.println(); } for (int i = 4; i > 0; i--){ for (int j = 0; j < i; j++){ System.out.print("*"); } System.out.println(); } } }代码2:使用绝对值(有点难)public class trianglepro { public static void main(String[] args){ for (int i = 0; i < 5*2-1; i++){ //Math.abs() 绝对值 for (int j = 0; j < 5 - Math.abs(4-i); j++){ System.out.print("*"); } System.out.println(); } } }结果:* ** *** **** ***** **** *** ** *3.打印三角形promax效果:代码:public class trianglepromax { public static void main(String[] args){ for (int i = 0; i < 5*2-1; i++) { for (int j = 0; j < Math.abs(4-i); j++) { System.out.print(" "); } for (int j = 0; j < (5-Math.abs(4-i))*2 - 1; j++) { System.out.print(i%2); } System.out.println(); } } }结果: 0 111 00000 1111111 000000000 1111111 00000 111 0 4.打印三角形promax远峰蓝(很离谱)效果代码:import java.awt.*; import javax.swing.JLabel ; import javax.swing.JFrame ; public class TriangleProMaxSierraBlue { public static void main(String args[]){ JFrame frame = new JFrame("TriangleProMaxSierraBlue") ; frame.setLayout(new FlowLayout()); String str=""; for(int i=0;i<5*2-1;i++){ for(int j=0;j<Math.abs(4-i);j++){ str+=" "; } for(int j=0;j<(5-Math.abs(4-i))*2-1;j++){ str+=i%2; } //这里补齐了后面的空格 for(int j=0;j<Math.abs(4-i);j++){ str+=" "; } JLabel lab = new JLabel(str,JLabel.CENTER) ; // 实例化标签对象 Font font = new Font("宋体", Font.PLAIN, 25); lab.setFont(font); lab.setForeground(new Color(173,198,220));; frame.add(lab) ; // 将组件件入到面板之中 str=""; } Dimension dim = new Dimension() ; dim.setSize(200,350) ; //窗体的大小 frame.setSize(dim) ; //设置窗体大小 Point point = new Point(500,100) ; // 设置坐标 frame.setLocation(point) ; //设置窗体坐标 frame.setVisible(true) ; //设置窗体可见 } }结果:就是上面的图片,不再重复5.打印三角形(输入版)代码:import java.util.Scanner; public class triangle_input { public static void main(String[] args){ //这里是输入 Scanner input = new Scanner(System.in); int num = input.nextInt(); for (int i = 0; i < num; i++){ for (int j = 0; j < i + 1; j++){ System.out.print("*"); } System.out.println(); } } } 结果:4 * ** *** ****2.面试题(看不懂,一脸懵逼)题目:/* 有一个方阵,方阵中有男生0和女生1。 一个女生上、下、左、右的女生与她本人同属于一朵"花"。 方阵中有多少"花"? */ public class flowerNumber { public static void main(String[] args){ int[][] studentCube={{0,0,1,1,1}, {1,0,1,0,0}, {1,1,1,0,1}, {0,0,0,0,0}, {1,1,0,1,1}}; System.out.print("Number of flowers is "+solution(studentCube)); } public static int solution(int[][] studentCube){ int flowerNum=0; //输入内容 return flowerNum; } }代码:(用到了迭代,看不懂啊)这个是彬酱的有关迭代的递归和迭代public class flowerNumber { public static void main(String[] args){ int[][] studentCube={{0,0,1,1,1}, {1,0,1,0,0}, {1,1,1,0,1}, {0,0,0,0,0}, {1,1,0,1,1}}; System.out.print("Number of flowers is "+solution(studentCube)); } public static int solution(int[][] studentCube){ int flowerNum=0; for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ if(studentCube[i][j]==0) continue; flowerNum++; tagFemaleToMale(studentCube,i,j); } } return flowerNum; } public static void tagFemaleToMale(int[][] studentCube,int i,int j){ studentCube[i][j]=0; if(i<4){ if(studentCube[i+1][j]==1) tagFemaleToMale(studentCube,i+1,j); } if(j<4){ if(studentCube[i][j+1]==1) tagFemaleToMale(studentCube,i,j+1); } if(i>0){ if(studentCube[i-1][j]==1) tagFemaleToMale(studentCube,i-1,j); } if(j>0){ if(studentCube[i][j-1]==1) tagFemaleToMale(studentCube,i,j-1); } } }结果:Number of flowers is 4三.总结要加快进度看视频啊,要来不及了很多绝对值那里需要再看看递归和迭代搞不懂,有机会就学
2021年11月14日
51 阅读
0 评论
0 点赞