常量
A:字符串常量 "hello"
B:整数常量 12,23
C:小数常量 12.345
D:字符常量 'a','A','0'
E:布尔常量 true,false
F:空常量 null(后面讲)
public class Test {
public static void main(String[] args) {
System.out.println("A"+1);
System.out.println('A'+1);
}
}
运行结果:
A1
66
变量的三要素
类型,变量名,保存的值
1,数值
整数 byte,short,int,long
小数 float,double
2,字符串
字符串 String
字符 char
3,布尔型
boolean
String brand = "华为";
int price = 2500;
double weight = 0.125;
char color = '红';
获取用户输入Scanner类
常用的两个方法:
* public int nextInt():获取一个int类型的值
* public String nextLine():获取一个String类型的值
*
* 出现问题了:
* 先获取一个数值,在获取一个字符串,会出现问题。
* 如何解决呢?
* A:先获取一个数值后,在创建一个新的键盘录入对象获取字符串。
* B:把nextLine()改为next()。
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
Scanner sc2 = new Scanner(System.in);
String s = sc2.nextLine();
System.out.println("a:" + a + ",s:" + s);
}
运算符
1.赋值运算符
“=”
2.算数运算符
+,-,*,/,%
3.关系运算符
">,<"
"==,!="
">=,<="
习题:求四位数字之和
public class Test {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入四位数");
int input = sc.nextInt();
int gewei = input % 10;
input = input / 10;
int shiwei = input % 10;
input = input / 10;
int baiwei = input % 10;
int qianwei = input / 10;
int result = gewei + shiwei + baiwei +qianwei;
System.out.println(result);
}
}
类型转换
自动类型转换
规则1:如果一个操作数为double型,则整个表达式可提升为double型
规则2:满足自动类型转换的条件
两种类型要兼容:
数值类型(整型和浮点型)互相兼容
目标类型大于源类型:
例如:double 型大于 int 型
强制类型转换
int b = (int)10.2;
double a = 10;
int c = (int)a;
当强制转换时,精度有损失
作者:豆约翰
链接:https://www.jianshu.com/p/3bacbcb9bdec
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。