发布于2020-11-19 20:36 阅读(1361) 评论(0) 点赞(14) 收藏(3)
+:加
-:减
*:乘
/:除
%:取余
++:自增
–:自减
int x = 10;
int y = 20;
int z = 4;
int c = 0;
int end = 0;
c = x+y;
System.out.println(c);
c = x-y;
System.out.println(c);
c = x*y;
System.out.println(c);
c = y/x;
System.out.println(c);
c = y%4;
System.out.println(c);
//20%4 = 0
//21%4 = 1
//先赋值,后自增 end = c ; c = c+1
end =c++;
//end = 0;c = 1
System.out.println(end);
//先自增,后赋值 c = c+1;end = c ;
//c=2;end = 2
end =++c;
System.out.println(end);
==:判断石佛相等
>=:大于等于
<=:小于等于
!=:不等于
>:大于
<:小于
boolean a = 10;
boolean b = 20;
System.out.println(a == b);//false
System.out.println(a <= b);//true
System.out.println(a != b);//false
&&:并且
a&&b : ture a、b都为ture 其他情况都为false
||:或者
a||b : false a、b都为false其他情况都为true
!:非
!a 如果a为true 则!a为false
boolean a = true;
boolean b = false;
System.out.println(a && b);//false
System.out.println(a || b);//true
System.out.println(!a);//false
//从大到小
( )
++;--
*;/;%
+;-
if(boolean){
//java语句
}else{
//java语句2
}
//如果boolean为true 运行java语句,否则运行java语句2
if(boolean){
//java语句
}else if(boolean2){
//java语句2
}else{
//java语句3
}
//如果boolean为true 运行java语句,否则判断如果boolean2为true 运行java2语句,否则运行java语句3
int x = 3;
switch (x){
case 1:
System.out.println(x);break;
case 2:
System.out.println(x);break;
case 3:
System.out.println(x);break;
case 4:
System.out.println(x);break;
case 5:
System.out.println(x);break;
default:
System.out.println("x啥也不是");
}
//switch是在当有个int 可能为n个值;但又不知道是哪个时用
// break 结束,没有break时switch会忽略case,一直运行下去
if (x == 1){
System.out.println(x);
}else if (x == 2){
System.out.println(x);
}else if (x == 3){
System.out.println(x);
}else if (x == 4){
System.out.println(x);
}else if (x == 5){
System.out.println(x);
}else{
System.out.println("x啥也不是");
}
//该语句等同于上方switch语句
for (int x = 0;x<10;x++){
System.out.println(x);
}
//格式:for(int;boolean;算数运算){循环语句}
//第一次循环:x = 0;输出x = 0;x++;
//第二次循环:x = 1;输出x = 1;x++;
//...
//第十次循环:x = 9;输出x = 9;x++;
//第十一次循环:x = 10;结束。没得输出;
/*
总输出:
0
1
2
3
4
5
6
7
8
9
*/
int x = 0;
while (x<10){
System.out.println(x);
x++;
}
//while循环可能循环0次
//第一次循环:x = 0;输出x = 0;x++;
//第二次循环:x = 1;输出x = 1;x++;
//...
//第十次循环:x = 9;输出x = 9;x++;
//第十一次循环:x = 10;结束。没得输出;
/*
总输出:
0
1
2
3
4
5
6
7
8
9
*/
int x = 0;
do {
System.out.println(x);
x++;
}while (x<10);
//先执行一次后再判断(至少执行一次)
//第一次循环:x = 0;输出x = 0;x++;
//第二次循环:x = 1;输出x = 1;x++;
//...
//第十次循环:x = 9;输出x = 9;x++;
//第十一次循环:x = 10;结束。没得输出;
/*
总输出:
0
1
2
3
4
5
6
7
8
9
*/
原文链接:https://blog.csdn.net/weixin_45824323/article/details/109791647
作者:长这么胖
链接:http://www.javaheidong.com/blog/article/1022/6550d242fc97d6bd47c3/
来源:java黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 java黑洞网 All Rights Reserved 版权所有,并保留所有权利。京ICP备18063182号-2
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!