Computer Science, asked by mayankbhardwaz56, 4 days ago

A courier company charges for the transportation of any parcel as follows :
Upto 15 gms - Rs.3.00
For each additional 10 gms or part thereof Rs. 2.
Write a programe to take the weight of the parcel in gms as input and calculate and display the charges using the above condition .​

Answers

Answered by cottoncandy135
2

Answer:

import java.util.Scanner;

public class KboatCourierCompany

{

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

System.out.print("Enter weight of parcel: ");

double wt = in.nextDouble();

System.out.print("Enter type of booking: ");

char type = in.next().charAt(0);

double charge = 0;

if (wt <= 0)

charge = 0;

else if (wt <= 100 && type == 'O')

charge = 80;

else if (wt <= 100 && type == 'E')

charge = 100;

else if (wt <= 500 && type == 'O')

charge = 150;

else if (wt <= 500 && type == 'E')

charge = 200;

else if (wt <= 1000 && type == 'O')

charge = 210;

else if (wt <= 1000 && type == 'E')

charge = 250;

else if (wt > 1000 && type == 'O')

charge = 250;

else if (wt > 1000 && type == 'E')

charge = 300;

System.out.println("Parcel charges = " + charge);

}

}

Similar questions