sábado, 24 de octubre de 2009

practica 6 problema 3




namespace practica_6._3_cosnsole
{
class Program
{
static void Main(string[] args)
{
double x, y;
Console.WriteLine("\t\tfuncion matematica");
Console.WriteLine("\nvalor de x \t\tvalor de y");
for (x = 1; x <= 10; x = x + 0.2) { y = 3 * Math.Pow(x, 5) + 2 * Math.Pow(x, 3) + x; Console.WriteLine("{0} \t\t\t{1} ", x, y); } Console.ReadLine();




practica en windows


public partial class Form1 : Form
{
double x, y;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double x, y;
listBox1.Items.Add("VALOR DE X \t\tVALOR DE Y");
for (x = 2; x <= 10; x = x + 0.2)
{
y = 3 * Math.Pow(x, 5) + 2 * Math.Pow(x, 3) + x;
listBox1.Items.Add(x.ToString()+ "\t\t" + y.ToString());
}
}
}

No hay comentarios:

Publicar un comentario