mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
14 lines
382 B
Java
Executable file
14 lines
382 B
Java
Executable file
/* Lesson 4 Coding Activity Question 4 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
class U1_L4_Activity_Four {
|
|
|
|
public static void main(String[] args) {
|
|
Scanner scan = new Scanner(System.in);
|
|
System.out.println("Enter a price:");
|
|
double price = scan.nextDouble();
|
|
double change = 10 - price;
|
|
System.out.println("Change from $10: $" + change);
|
|
}
|
|
}
|