变量
1、 类型 变量名 = 值;
2、对于银行和超市这类系统将小数运算转化成整数运算完成后再处理成小数。
换算
单位的换算
1字节(Byte) = 8 比特(bit)
千字节(KB)= 1024字节(Byte)
兆字节(MB)= 1024 KB
吉字节(GB) = 1024 MB
太字节(TB)= 1024 GB
练习 (四则运算)
import java.util.Scanner;
public class Hello2 {
public static void main(String[] args) {
//double a, b ;
Scanner input = new Scanner(System.in);//变量名 input, scanner 扫描器,system.in 标准输入
System.out.print("a = ");
double a = input.nextDouble();
System.out.print("b = ");
double b = input.nextDouble();
input.close();
System.out.printf("%f / %f = %.2f\n", a , b, a/b);
System.out.printf("%f + %f = %.1f\n", a , b, a+b);
System.out.printf("%f - %f = %.3f\n", a , b, a-b);
System.out.printf("%f %% %f = %f\n", a , b, a%b);
//System.out.println(areaRound(4));
// %d 输出整数 %f 输出小数
}
}