See More

/* */ package ch01; /* */ /* */ import java.util.Scanner; /* */ /* */ public class E0101 { /* */ public static void main(String[] args) { /* 7 */ Scanner scanner = new Scanner(System.in); /* */ /* 9 */ System.out.print("Please input a~f: "); /* 10 */ float a = scanner.nextFloat(); /* 11 */ float b = scanner.nextFloat(); /* */ /* 13 */ System.out.println(a); /* 14 */ System.out.println(b); /* */ } /* */ } /* Location: /Volumes/TXS.128G/hope useful/practice/2020.jar!/ch01/E0101.class * Java compiler version: 8 (52.0) * JD-Core Version: 1.1.3 */