Question: Can you briefly draw a flowchart for this program. Thank you ! import java.util.Scanner; public class Solution public static void main(Stringl] args Scanner sc new
import java.util.Scanner; public class Solution public static void main(Stringl] args Scanner sc new Scanner(System.in) System.out.print Enter the number of persons travelling- "; /I the number of people int noPeople - sc.nextint0: ll calculate the base charge for each person int baseCharge - noPeople 350; ll find the charge for tent System.out,print"'Enter the number of nights you would stay - int noNights # sc.nextint(); /l find charge for one night since a tent can Il accomodate only 4 people int chargePerNight (int)Math.ceil(lnoPeople 1.0/4)* 40; /l find charge for all nights int tentCharge chargePerNight noNights; int tentMultiplier (int)Math.ceil(noPeople 1.0/4) noNights; ll find whether the customer needs climbing instructor System.out,printf"Would you like to have a climbing instructor? (Y/N)- 3.208 25
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
