Meu retorno esta sendo NaN não é numero.
Segue meu código.
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms;
namespace WindowsFormsApplication5 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }
private void button1_Click(object sender, EventArgs e) { int a = 1; int b = 3; int c = 10;
double delta, a1, a2;
delta = b b - 4 a * c;
a1 = (-b + Math.Sqrt(delta)) / (2 a); a2 = (-b - Math.Sqrt(delta)) / (2 a); MessageBox.Show(Convert.ToString(a1) + Convert.ToString(a2));
} } }