Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. /* Elle and Cylan
  2. 1/28/2020
  3. Ms. Regan
  4. Tire Pressure 1 */
  5.  
  6. import java.util.Scanner;
  7.  
  8. public class Program {
  9.  
  10. public static void main(String[] args) {
  11. // Tire Pressure 1
  12. double f;
  13.  
  14. //Elle
  15. Scanner sc = new Scanner(System.in);
  16. System.out.println("Enter an integer value in pounds per square inch");
  17. f = sc.nextDouble();
  18.  
  19. //Elle
  20. if (f < 25) {
  21. System.out.println("TIRE LOW");
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement