20091007

practica 5.1 CONVERSION DE GRADOS ( consola,visual)

pseudocodigo.
inicio
double celcius,n, inc, fah
int contador = 1
print"tValor inicial en grados celcius"
Read celcius
print "\n\n\tNumero de conversiones"
Read n
print"Incrementos"
Read inc
print "celcius fahrenheit"
while contador <= n) { fah = (9.0 / 5.0) * celcius + 32; print("\n\n\tcelcius "+celcius+ " fahrenheit "+fah
celcius = celcius + inc; contador = contador + 1
} fin



Escriba un programa para convertir grados Celsius a Fahrenheit. El programa debe solicitar el valor inicial en grados Celsius, la cantidad de conversiones que se efectuaran y el incremento entre los valores en grados Celsius. La pantalla debe tener los encabezados apropiados y una lista con los valores en grados Celsius y los correspondientes en grados Fahrenheit. Utilice la siguiente relación Fahrenheit=(9.0/5.0)*celcius+32.


A continuacion el ejecutable en consola


using System;

using System.

Collections.Generic;

using System.Linq;

using System.Text;

namespace ConsoleApplication1

{

class Program {

static void Main(string[] args)

{

double celcius,n, inc, fah;

int contador = 1;

Console.WriteLine("\n\n\tValor inicial en grados celcius");

celcius = double.Parse(Console.ReadLine());

Console.WriteLine("\n\n\tNumero de conversiones");

n = int.Parse(Console.ReadLine());

Console.WriteLine("\n\n\tIncrementos");

inc=double.Parse(Console.ReadLine());

Console.WriteLine("\n\n\tcelcius fahrenheit");

while (contador <= n) { fah = (9.0 / 5.0) * celcius + 32;

Console.WriteLine("\n\n\tcelcius "+celcius+ " fahrenheit "+fah);

celcius = celcius + inc; contador = contador + 1;

}

Console.ReadKey();

}

}

}



practica 5.1 CONVERSION DE GRADOS ( visual).


acontinuacion el codigo para ejecutar el programa anterior en forma visual.

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 celcius, inc, fah;
int n, contador = 1;

celcius = double.Parse(textBox1.Text);
n = int.Parse(textBox2.Text);
inc = double.Parse(textBox3.Text);


while (contador <= n) { fah = (9.0 / 5.0) * celcius + 32; l

istBox1.Items.Add(" celcius " + celcius +" Fahrenheit " + fah);

celcius = celcius + inc; contador = contador + 1;

}

}

private void label1_Click(object sender, EventArgs e)

{ } private void textBox2_TextChanged(object sender, EventArgs e) { } private void textBox3_TextChanged(object sender, EventArgs e) { } private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { } } } ,.


No hay comentarios:

Publicar un comentario