mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 22:15:15 +00:00
15 lines
414 B
Java
15 lines
414 B
Java
/* Lesson 3 Coding Activity Question 1 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
class U1_L3_Activity_One {
|
|
|
|
public static void main(String[] args) {
|
|
Scanner scan = new Scanner(System.in);
|
|
System.out.println("Enter doubles");
|
|
double d3 = scan.nextDouble();
|
|
double d2 = scan.nextDouble();
|
|
double d1 = scan.nextDouble();
|
|
System.out.println(d1 + " " + d2 + " " + d3);
|
|
}
|
|
}
|