20091110

PRACTICA 6.2 EJERCICIO DE ECUACIONES (consola)

pseudocodigo.
Inicio
Real x,y
Print"funcion Matematica"
Print "valores x valores y "
for(x=2 to 10) step 0.2
{
y= 3* x ^5 + 2 * x ^3 + x
Print (x y )
}
fin

para las demas cuestiones del programa se cambia el print de las ecuaciones.

A)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
{
double x = 0.0, y;
for (x = 1; x <= 10; x = x + 2.0 / 10.0) { y = 3 * Math.Pow(x, 5) + 2 * Math.Pow(x, 3) + x; Console.WriteLine(x + " 3x^5 + 2x ^3 + x = " + y);

}
Console.ReadLine();
}
}
} }







B)




using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
double x = 0.0, y;
for (x = 1; x <= 5; x = x + 1.0 / 10.0)

{
y = 1.0 + x + Math.Pow(x, 2) / 2.0 + Math.Pow(x, 3) / 6.0 + Math.Pow(x, 4) / 24; Console.WriteLine(x + " 1.0 + x + x^2/2.0 + x^3/6.0 + x^4/24 = " + y);
Console.ReadKey();
} } } }







c)







using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
{
double t = 0.0, y;
for (t = 5; t <= 10; t = t + 0.5) { y = 2 * Math.Exp( 0.8 * t); Console.WriteLine(t + "\t 2e^ (0.8*t) " + y); } Console.ReadLine(); } } } }

No hay comentarios:

Publicar un comentario