20091007

practica 5.4 COORDENADAS X Y ( visual)..


a continuacion el ejecutable para el el programa de la practica 5.4.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double t = 0;
double a, b, rad;
Console.WriteLine("tiempo valor x valor y ");
rad = (3.1416 * 22.8) / 180;
do
{
a = 500 * t * Math.Cos(rad);
b = 500 * t * Math.Sin(rad);
listBox1.Items.Add("\ttiempo " + t + "\tvalor x " + a + " valor y " + b);
t = t + 1.0 / 2.0;
}
while (t <= 10);
} private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { }
private void button2_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
}
}
}


ahora haremos el diagrama a flujo que obviamente que debe ser el primero en hacerse,. por cuestiones de envios aqui esta.

























No hay comentarios:

Publicar un comentario