回看java基础。第二天
程序员文章站
2022-06-19 15:22:11
1、运算符%:取余、模运算;“+ - * /” 运算,有Long,结果为Long;其他,结果为int,不管是否有int。++ 自增--自减int a = 1;int b = a++;//先赋值,再自增System.out.println(a);//b=1;a=2;System.out.println(b);//b=1;int c = ++a;//先自增,在赋值。System.out.println(c);//c=3;a=3;幂运算//2^3 2*2*2=8double...
1、运算符
%:取余、模运算;
“+ - * /” 运算,有Long,结果为Long;其他,结果为int,不管是否有int。
++ 自增 --自减
int a = 1;
int b = a++;//先赋值,再自增
System.out.println(a); //b=1;a=2;
System.out.println(b); //b=1;
int c = ++a;//先自增,在赋值。
System.out.println(c); //c=3;a=3;
幂运算
//2^3 2*2*2=8
double pow = Math.pow(2,3);
字符串链接
a=1;
b=2;
System.out.println(“”+a+b); //c=3;a=3;先转换 再求和。
System.out.println(a+b+“”); //c=3;a=3;先求和。再转换。
2、JavaDoc
javadoc 参数(-encoding UTF-8 -charset UTF-8) java文件。idea生成javadoc文档,Tools-> Generate JavaDoc,参数加 -encoding utf-8 -charset utf-8。
3、Scanner
scanner.in;接收键盘输入的数据。
4、if
1)、单选择
2)、双选择
3)、多选择
4)、嵌套
5、switch多选择
6、循环结构
1)、while
2)、do … while
3)、for
99乘法表
for (int j = 1; j <= 9; j++) {
for (int i = 1; i <= j; i++) {
System.out.print(i + "*" + j + "=" + j * i + "\t");
}
System.out.println();
}
7、break continue
判断质数
//101-150间的质数
out:
for (int i = 101; i < 150; i++) {
for (int j = 2; j < i / 2; j++) {
if (i % j == 0) {
continue out;
}
}
System.out.print(i + " ");
}
参考来源:哔哩哔哩,遇见狂神说视频。
本文地址:https://blog.csdn.net/b_x9520/article/details/111827605