dlkclo活动时间很多客户数控刀具2ksjkdjkjs
dlkclo活动时间很多客户数控刀具2ksjkdjkjs
~12(8(*9;'[kdsjfkjeljijkjkSJ;Lf;jlJf;jfkJuejlJlfjlJjejkejifsijfjj*&&*&^&*^**&&&$$$$$$$$$fflk5%&8(08(**(***^&$%^$ dkks<>》
八kwjdkj's;;' ^&*&^^%(**(&*&*(&(*(*(whritehellohellofuckmotherfather
1-如何接收用户键盘输入的数据
import java.util.Scanner;
Scanner s = new Scanner(System.in);
s.nextInt();
1-break的第一个作用:用来跳出switch语句
2-break的第二个作用:用来跳出循环
1-
for 循环适用于已知要循环的顺序
while循环适用于已知循环的条件
import java.util.Scanner;
Scanner s = new Scanner(System.in);
s.nextInt();
continue 中断当前循环,继续执行后续循环,只用于循环中。
break跳出当前最近的循环,后续都不再执行。
return可以yong
特殊的用法:
if()
Xxx;
Xxx;
public class IfDemo{
public static void main(String[] args){
int hp = 3;
if(hp<=0)
System.out.println("已经死亡");//if语句判定条件
System.out.println("GameOver");
//if(hp<=0){
//System.out.println("已经死亡");
//}else{
//System.out.println("还活着");
//}
//if(hp>0){
//System.out.println("还活着");
//}0-1000
//0-100 D
//101-300 C
//301-500 B
//501-600 A
//601-700 S
//701-800 SS
//801-1000 SSS
int score = 800;
if(score >= 0 && score<=100 ){
System.out.println("你获得的评级是:D");
}
if(score >= 101 && score<=300 ){
System.out.println("你获得的评级是:C");
}
if(score >= 301 && score<=500 ){
System.out.println("你获得的评级是:B");
}
if(score >= 501 && score<=600 ){
System.out.println("你获得的评级是:A");
}if(score >= 601 && score<=700 ){
System.out.println("你获得的评级是:S");
}if(score >= 701 && score<=800 ){
System.out.println("你获得的评级是:SS");
}if(score >= 801 && score<=1000 ){
System.out.println("你获得的评级是:SSS");
}
}
}
if();
public class IfDemo{
public static void main(String[] args){
int hp = 3;
if(hp<=0);//此时if语句为结束语句
System.out.println("已经死亡");
System.out.println("GameOver");
//if(hp<=0){
//System.out.println("已经死亡");
//}else{
//System.out.println("还活着");
//}
//if(hp>0){
//System.out.println("还活着");
//}0-1000
//0-100 D
//101-300 C
//301-500 B
//501-600 A
//601-700 S
//701-800 SS
//801-1000 SSS
int score = 800;
if(score >= 0 && score<=100 ){
System.out.println("你获得的评级是:D");
}
if(score >= 101 && score<=300 ){
System.out.println("你获得的评级是:C");
}
if(score >= 301 && score<=500 ){
System.out.println("你获得的评级是:B");
}
if(score >= 501 && score<=600 ){
System.out.println("你获得的评级是:A");
}if(score >= 601 && score<=700 ){
System.out.println("你获得的评级是:S");
}if(score >= 701 && score<=800 ){
System.out.println("你获得的评级是:SS");
}if(score >= 801 && score<=1000 ){
System.out.println("你获得的评级是:SSS");
}
}
}
注意事项
三元运算符可以实现的都可以使用if语句代替
区别:
三元运算符比较简洁
三元运算符必须返回结果
if语句可以执行多条语句
public class IfDemo{
public static void main(String[] args){
//int hp = 3;
//if(hp<=0);
//System.out.println("已经死亡");
//System.out.println("GameOver");
//if(hp<=0){
//System.out.println("已经死亡");
//}else{
//System.out.println("还活着");
//}
//if(hp>0){
//System.out.println("还活着");
//}0-1000
//0-100 D
//101-300 C
//301-500 B
//501-600 A
//601-700 S
//701-800 SS
//801-1000 SSS
/*
int score = 800;
if(score >= 0 && score<=100 ){
System.out.println("你获得的评级是:D");
}
if(score >= 101 && score<=300 ){
System.out.println("你获得的评级是:C");
}
if(score >= 301 && score<=500 ){
System.out.println("你获得的评级是:B");
}
if(score >= 501 && score<=600 ){
System.out.println("你获得的评级是:A");
}if(score >= 601 && score<=700 ){
System.out.println("你获得的评级是:S");
}if(score >= 701 && score<=800 ){
System.out.println("你获得的评级是:SS");
}if(score >= 801 && score<=1000 ){
System.out.println("你获得的评级是:SSS");
}
*/
int a = 9 ,b =20;
int max = a>b?a:b;
if(a>b){
max = a;
}else{
max=b;
}
}
}
Cd打开目录
1/2
2/A.G
3/
条件语句
意义:通过条件判断是否执行某些语句
if条件
第一种:
if(布尔表达式){
//语句,当布尔表达式为true的时候才会执行的语句
}
public class IfDemo{
public static void main(String[] args){
int hp = 0;
if(hp<=0){
System.out.println("已经死亡");
System.out.println("GameOver");
}
}
}
第二种
if(){
//语句
}else{
//语句
}
public class IfDemo{
public static void main(String[] args){
int hp = 3;
//if(hp<=0){
//System.out.println("已经死亡");
//System.out.println("GameOver");
//}
if(hp<=0){
System.out.println("已经死亡");
}else{
System.out.println("还活着");
}
//if(hp>0){
//System.out.println("还活着");
//}
}
}
第三种
if(){
}else if(){
}else{
}
public class IfDemo{
public static void main(String[] args){
int hp = 3;
//if(hp<=0){
//System.out.println("已经死亡");
//System.out.println("GameOver");
//}
//if(hp<=0){
//System.out.println("已经死亡");
//}else{
//System.out.println("还活着");
//}
//if(hp>0){
//System.out.println("还活着");
//}0-1000
//0-100 D
//101-300 C
//301-500 B
//501-600 A
//601-700 S
//701-800 SS
//801-1000 SSS
int score = 800;
if(score >= 0 && score<=100 ){
System.out.println("你获得的评级是:D");
}
if(score >= 101 && score<=300 ){
System.out.println("你获得的评级是:C");
}
if(score >= 301 && score<=500 ){
System.out.println("你获得的评级是:B");
}
if(score >= 501 && score<=600 ){
System.out.println("你获得的评级是:A");
}if(score >= 601 && score<=700 ){
System.out.println("你获得的评级是:S");
}if(score >= 701 && score<=800 ){
System.out.println("你获得的评级是:SS");
}if(score >= 801 && score<=1000 ){
System.out.println("你获得的评级是:SSS");
}
}
}
特殊的用法:
if()
Xxx;
Xxx;
if();
注意事项
三元运算符可以实现的都可以使用if语句代替
区别:
三元运算符比较简洁
三元运算符必须返回结果
if语句可以执行多条语句
第三章 流程控制
50课时if语句的特殊控制
if()
sys();
sys();
1-当if语句后没有大括号时,默认后面第一句为if语句块中执行的语句。
其他语句一定会执又分哈 行.
if();
sys;
sys;
2-当if语句后面有分号时说明已经结束
long d =10000 L
float e = 1.2 f
数字后加l表示long类型
bit 位:0或1
byte 字节
1 byte=8bit
1 T = 1024 GB
new的对象是放在堆里面的
第三章流程控制
条件语句
if(){
}
if(){
}else{
}
if(){
}else if {
}ele if{
}else{
}
语句快注意事项:
1、遇到单纯的语句块,会直接执行语句块里面的语句,从上到下。
2、语句块可以访问外面定义的变量,外面不能访问语句块里面定义的变量。
需要记忆的两个计算机快捷键
ctrl + A 全选文本
ctrl + N 新建
home 行首
end 行尾