TechSapphire Tuesday, 2024-03-19, 10:43 AM
Site menu
Login form
News
Play Games
  • Deep Freeze
  • Ice Slide
  • Gyroball
  • Fat Fish
  • Bush Royal Rampage
  • /LittleTooFast.javaQuestion : You are driving a little too fast, and a police officer stops you. Write code to compute the result, encoded as an int value: 0= no ticket, 1=small ticket, 2=big ticket. If speed is 60 or less, the result is 0. If speed is between 61 and 80 inclusive, the result is 1. If speed is 81 or more, the result is 2. Unless it is your birthday -- on that day, your speed can be 5 higher in all cases. 
    Output:
    Speed Birthday Result
    60, false -> 0
    65, false -> 1
    65, true -> 0

    Answer : 

    import java.util.*;
    public class LittleTooFast
    {
     public static void main(String[] args) {
     Scanner sc=new Scanner(System.in); 
     
     System.out.println("Enter Speed : "); 
     int Speed=sc.nextInt(); 
     System.out.println("Birthday : "); 
     boolean IsBirthDay=sc.nextBoolean(); 
     if(Speed<=60)
     {
     System.out.println("0"); 
     }
     else if(Speed>60 && Speed<=80)
     {
     if(IsBirthDay)
     {
     if(Speed<=65)
     {
     System.out.println("Result : 0");
     }
     else{
     System.out.println("Result : 1");
     }
     }
     else
     {
     System.out.println("Result : 1"); 
     }
     }
     else if(Speed>80)
     {
     if(IsBirthDay)
     {
     if(Speed<=85)
     {
     System.out.println("Result : 1");
     }
     else{
     System.out.println("Result : 2");
     }
     }
     else
     {
     System.out.println("Result : 2"); 
     }
     }
     sc.close(); 
     }
    }

    Click to download

    Categories
    Programming [27]
    Tips for programming
    Security [2]
    Security Tips
    Google [1]
    Use google faster then ever you use
    Project [14]
    HTML [2]
    Electronics [0]
    Data Structure [0]
    Database [16]
    SQL SERVER
    SSRS [1]
    Sql Server Reporting Services
    Copyright MyCorp © 2024