A retail store is writing a program to calculate a customer's promotional bonus points across three separate purchases.
If any purchased items are subsequently returned, the customer's total bonus points are reduced.
Write a VB.NET program to calculate the final total bonus points.
You should assume there are three integer variables called p1, p2, and p3 which have already been declared and given values representing the points from each of the three purchases.
The program should:
You should use meaningful variable name(s) and VB.NET syntax in your answer.