Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,948 questions

51,890 answers

573 users

How to find the roots of a quadratic equation in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
	Public Shared Sub quadratic_equation_roots(ByVal a As Double, ByVal b As Double, ByVal c As Double)
        Dim discriminant As Double = (b * b) - (4 * a * c)
        Dim root1, root2 As Double

        If discriminant > 0 Then
            root1 = (-b + Math.Sqrt(discriminant)) / (2 * a)
            root2 = (-b - Math.Sqrt(discriminant)) / (2 * a)
            Console.WriteLine("root1 = " & root1 & Environment.NewLine & "root2 = " & root2)
        ElseIf discriminant = 0 Then
			root1 = -b / (2 * a)
			root2 = -b / (2 * a)
            Console.WriteLine("root1 = root2 = " & root1)
        ElseIf discriminant < 0 Then
            Dim real As Double = -b / (2 * a)
            Dim imaginary As Double = Math.Sqrt(-discriminant) / (2 * a)
            Console.WriteLine("root1 = " & real & "+" & imaginary & "i" & Environment.NewLine & "root2 = " & real & "-" & imaginary & "i")
        End If
    End Sub

    Public Shared Sub Main()
        Dim a As Double = 3, b As Double = 5, c As Double = -9
        quadratic_equation_roots(a, b, c)
        Console.WriteLine()
		
        a = 3
        b = 5
        c = 7
        quadratic_equation_roots(a, b, c)
        Console.WriteLine()
		
        a = 2
        b = 4
        c = 2
        quadratic_equation_roots(a, b, c)
    End Sub
End Class



' run:
'
' root1 = 1.08876043244513
' root2 = -2.7554270991118

' root1 = -0.833333333333333+1.2801909579781i
' root2 = -0.833333333333333-1.2801909579781i

' root1 = root2 = -1
'

 



answered Jan 11, 2022 by avibootz

Related questions

1 answer 202 views
1 answer 191 views
1 answer 170 views
1 answer 169 views
1 answer 142 views
1 answer 170 views
1 answer 189 views
...