Answer to Question #256055 in Visual Basic for Bamboo

Question #256055

Using Visual Studio Create a simple application Manny Management Consulting charges P2,000 for training fee

and P150 per person for registration fee. Create an application

to help the accountant make a billing statement showing the

customer's name, address, number of participants, training fee,

registration fee and total amount due


1
Expert's answer
2021-10-25T09:39:50-0400
Module Module1
    Sub Main()


        Dim names(100) As String
        Dim addresses(100) As String
        Dim trainingFee(100) As Double
        Dim registrationFee(100) As Double
        Dim amountDues(100) As Double
        Dim totalAmountDue As Double = 0


        Console.Write("Enter the number of participants: ")
        Dim numberParticipants As Integer = Integer.Parse(Console.ReadLine())


        For i As Integer = 0 To numberParticipants - 1
            Console.Write("Enter customer's name: ")
            names(i) = Console.ReadLine()
            Console.Write("Enter customer's address: ")
            addresses(i) = Console.ReadLine()
            trainingFee(i) = 2000
            registrationFee(i) = 150
            amountDues(i) = trainingFee(i) + registrationFee(i)
            Console.WriteLine()
        Next


        Console.WriteLine()
        For i As Integer = 0 To numberParticipants - 1
            Console.WriteLine("Customer's name: " + names(i))
            Console.WriteLine("Customer's address: " + addresses(i))
            Console.WriteLine("Customer's training fee: P" + trainingFee(i).ToString())
            Console.WriteLine("Customer's registration fee: P" + registrationFee(i).ToString())
            Console.WriteLine("Customer's total amount due: P" + amountDues(i).ToString())
            totalAmountDue += amountDues(i)
            Console.WriteLine()
        Next


        Console.WriteLine("The total amount due: P" + totalAmountDue.ToString())
        


        Console.ReadLine()
    End Sub
End Module

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS