题解 | 复读机
复读机
https://www.nowcoder.com/practice/9d381551b6ab40c4b5c3c8d60fe4066e
import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息public class Main {public static void main(String[] args) {Scanner in = new Scanner(System.in);
int a = in.nextInt(); in.nextLine(); // 消耗掉换行符 // 读取第二行整数 b long b = in.nextLong(); in.nextLine(); // 消耗掉换行符 // 读取第三行浮点数 c double c = in.nextDouble(); in.nextLine(); // 消耗掉换行符 // 读取第四行小写字母 d char d = in.nextLine().charAt(0); // 读取第五行字符串 e String e = in.nextLine(); // 输出结果 System.out.println(a); System.out.println(b); System.out.printf("%.1f%n", c); // 保留一位小数输出 System.out.println(d); System.out.println(e); }
}