Subject Grade
Subject Grade
Sub Main()
' Declare variables to store the marks for each subject and total marks
Dim physics, chemistry, biology, mathematics, computer As Integer
Dim totalMarks As Integer
Dim percentage As Double
Dim grade As String
' Prompt the user to enter the marks for each subject
Console.WriteLine("Enter marks for Physics: ")
physics = Convert.ToInt32(Console.ReadLine())
End Module