Consider this Java code for input handling. Is it an example of clean code?
Scanner sc = new Scanner(System.in);
System.out.println("Introduce three numbers:");
n1 = sc.nextInt();
n2 = sc.nextInt();
n3 = sc.nextInt();
Consider this Java code for input handling. Is it an example of clean code?
Scanner sc = new Scanner(System.in);
System.out.println("Introduce three numbers:");
n1 = sc.nextInt();
n2 = sc.nextInt();
n3 = sc.nextInt();