fork download
  1. #!/bin/bash
  2.  
  3. # Display Product Input Section
  4. echo -e "\nEnter Product 1: Iphone 12"
  5. echo -e "Enter Price: \$75,000.00\n"
  6.  
  7. echo -e "Enter Product 2: Samsung S21"
  8. echo -e "Enter Price: \$76,000.00\n"
  9.  
  10. echo -e "Enter Product 3: Xiaomi Black Shark"
  11. echo -e "Enter Price: \$35,000.00\n"
  12.  
  13. # Predefined Products and Prices
  14. product1="Iphone 12"
  15. price1=75000.00
  16.  
  17. product2="Samsung S21"
  18. price2=76000.00
  19.  
  20. product3="Xiaomi Black Shark"
  21. price3=35000.00
  22.  
  23. # Payment Terms
  24. cash_discount=10
  25. installment_3=5
  26. installment_6=10
  27. installment_12=20
  28.  
  29. # Display Payment Terms
  30. echo -e "Input Mode of Payment Terms\n"
  31. printf "Cash Discount: %d\n" "$cash_discount"
  32. echo " You input ${cash_discount}% for Cash Discount"
  33. printf "3 Months Installment: %d\n" "$installment_3"
  34. echo " You input ${installment_3}% for 3 Months Installment"
  35. printf "6 Months Installment: %d\n" "$installment_6"
  36. echo " You input ${installment_6}% for 6 Months Installment"
  37. printf "12 Months Installment: %d\n" "$installment_12"
  38. echo " You input ${installment_12}% for 3 Months Installment"
  39.  
  40. # Main Menu
  41. echo -e "\nMain Menu"
  42. printf "Press I: %-25s %10s\n" "$product1" "\$$(printf "%'.2f" "$price1")"
  43. printf "Press S: %-25s %10s\n" "$product2" "\$$(printf "%'.2f" "$price2")"
  44. printf "Press X: %-25s %10s\n" "$product3" "\$$(printf "%'.2f" "$price3")"
  45.  
  46. # Automatically Select Item (Iphone 12)
  47. selected_product=$product1
  48. selected_price=$price1
  49. echo -e "\nEnter Item: I"
  50.  
  51. # Display Selected Product
  52. echo -e "\nYour Item is $selected_product"
  53. printf "Price: %35s\n" "\$$(printf "%'.2f" "$selected_price")"
  54.  
  55. # Payment Options
  56. echo -e "\nSelect Mode of Payment"
  57. echo "Press 1: Cash - $cash_discount% Discount"
  58. echo "Press 2: 3 Months Installment - $installment_3% Interest"
  59. echo "Press 3: 6 Months Installment - $installment_6% Interest"
  60. echo "Press 4: 12 Months Installment - $installment_12% Interest"
  61.  
  62. # Automatically Select Payment Mode (3 Months Installment)
  63. payment=2
  64. echo -e "\nEnter Mode of Payment: 2"
  65.  
  66. # Define Payment Terms
  67. case $payment in
  68. 1) discount=$cash_discount; term="Cash";;
  69. 2) discount=$installment_3; term="3 Months Installment";;
  70. 3) discount=$installment_6; term="6 Months Installment";;
  71. 4) discount=$installment_12; term="12 Months Installment";;
  72. esac
  73.  
  74. # Calculate Total Price
  75. discount_amount=$(echo "$selected_price * $discount / 100" | bc)
  76. if [ "$payment" -eq 1 ]; then
  77. total_amount=$(echo "$selected_price - $discount_amount" | bc)
  78. else
  79. total_amount=$(echo "$selected_price + $discount_amount" | bc)
  80. months=$(echo "$term" | awk '{print $1}') # Extract months from term
  81. monthly=$(echo "$total_amount / $months" | bc)
  82. fi
  83.  
  84. # Display Final Summary
  85. echo -e "\nMode of Payment: $term"
  86. echo "Item: $selected_product"
  87. printf "Price: %35s\n" "\$$(printf "%'.2f" "$selected_price")"
  88. printf "Discount/Interest: %25s\n" "\$$(printf "%'.2f" "$discount_amount")"
  89. printf "Total Amount: %30s\n" "\$$(printf "%'.2f" "$total_amount")"
  90.  
  91. if [ "$payment" -ne 1 ]; then
  92. printf "Monthly: %34s\n" "\$$(printf "%'.2f" "$monthly")"
  93. fi
Success #stdin #stdout 0.02s 5280KB
stdin
Standard input is empty
stdout
Enter Product 1:         Iphone 12
Enter Price:             $75,000.00

Enter Product 2:         Samsung S21
Enter Price:             $76,000.00

Enter Product 3:         Xiaomi Black Shark
Enter Price:             $35,000.00

Input Mode of Payment Terms

Cash Discount:                          10
                  You input 10% for Cash Discount
3 Months Installment:                   5
                  You input 5% for 3 Months Installment
6 Months Installment:                   10
                  You input 10% for 6 Months Installment
12 Months Installment:                  20
                  You input 20% for 3 Months Installment

Main Menu
Press I: Iphone 12                 $75,000.00
Press S: Samsung S21               $76,000.00
Press X: Xiaomi Black Shark        $35,000.00

Enter Item: I

Your Item is Iphone 12
Price:                          $75,000.00

Select Mode of Payment
Press 1: Cash - 10% Discount
Press 2: 3 Months Installment - 5% Interest
Press 3: 6 Months Installment - 10% Interest
Press 4: 12 Months Installment - 20% Interest

Enter Mode of Payment: 2

Mode of Payment: 3 Months Installment
Item: Iphone 12
Price:                          $75,000.00
Discount/Interest:                 $3,750.00
Total Amount:                     $78,750.00
Monthly:                         $26,250.00