从键盘输入数据:
public class Input {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
double a = sc.nextDouble();
String s = sc.nextLine();
}
输出格式:
% [参数索引 $] [对齐标志] [总场宽] [.小数位数] 数据类型
- 参数索引:指定输出数据的位置(1~n)
- 总场宽.小数位数 :
- %6.2f 总场宽6位、小数点两位
- %。2f 总场宽按实际长度、小数位两位
System.out.printf("n = %.2f\t s = %6.2f\n",100,200);
System.out.printf("n = %.2f\n",100.88);