예제 #1
0
        private void frmPolinomio_Load(object sender, EventArgs e)
        {
            A = new Polinomio();
            StreamReader arquivo = new StreamReader("c:\\temp\\dadosPoliA.txt");
            string       linha   = "";

            while ((linha = arquivo.ReadLine()) != null)
            {
                A.InserirAposFim(new Termo(
                                     Convert.ToDouble(linha.Substring(0, 5)), // coeficiente
                                     Convert.ToInt32(linha.Substring(5)))     // expoente
                                 );
            }
            arquivo.Close();

            B       = new Polinomio();
            arquivo = new StreamReader("c:\\temp\\dadosPoliB.txt");
            linha   = "";
            while ((linha = arquivo.ReadLine()) != null)
            {
                B.InserirAposFim(new Termo(
                                     Convert.ToDouble(linha.Substring(0, 5)), // coeficiente
                                     Convert.ToInt32(linha.Substring(5)))     // expoente
                                 );
            }
            arquivo.Close();


            A.Exibir(txtA);
            B.Exibir(txtB);
        }
예제 #2
0
        private void btnSomar_Click(object sender, EventArgs e)
        {
            Polinomio res = A.somar(B);

            res.Exibir(txtResultado);
        }