lunes, 21 de septiembre de 2009

PRACTICA 2

PRACTICA 2 (A.CONSOLA)


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace practica_2__a_

{

class Program

{

static void Main(string[] args)

{

int N, M, P, Rs;

Console.WriteLine("introduce la cantidad de la R de 50 ohms");

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

Console.WriteLine("introduce la cantidad de la R de 33 ohms");

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

Console.WriteLine("introduce la cantidad de la R de 15 ohms");

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

Rs=N*50+M*33+P*15;

Console.WriteLine("la R total en serie es {0}",Rs);

Console.ReadKey();

}

}

}

PRACTICA 2 (A. 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 practica_2_a.v_
{
public partial class Form1 : Form
{
int N, M, P, Rs;
public Form1()
{
N = M = P = 0;

InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
N = int.Parse(textBox1.Text);
M = int.Parse(textBox2.Text);
P = int.Parse(textBox3.Text);
Rs = N*56+M*33+P*15;
textBox4.Text = ("la R total en en serie es ") + Rs.ToString ();




}

private void button3_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
textBox4.Clear();
}

private void button2_Click(object sender, Event Args e)
{
Close();
}
}
}

PRACTICA 2 (B.CONSOLA)



using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace practica2_B.c_
{
class Program
{
static void Main(string[] args)
{
int distancia, velocidad, tiempo;
Console.WriteLine("programa que calcular la distancia en millas");
Console.WriteLine("introduce valores enteros que se representa la velocidad");
velocidad=int.Parse(Console.ReadLine());
Console.WriteLine("introduce valor entero que representa el tiempo trascurrido");
tiempo=int.Parse(Console.ReadLine());
distancia=velocidad*tiempo;
Console.WriteLine("la distancia total en millas {0}", distancia);
Console.ReadKey();
}
}
}

PRACTICA 2 (B.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 practica2_B.v_
{
public partial class Form1 : Form
{
int Distancia, Velocidad, Tiempo;
public Form1()
{
InitializeComponent();
}

private void pictureBox1_Click(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
Velocidad = int.Parse(textBox1.Text);
Tiempo = int.Parse(textBox2.Text);
Distancia = Velocidad * Tiempo;
textBox3.Text = ("la distancia total en millas es ") + Distancia.ToString();
}

private void button3_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();

}

private void button2_Click(object sender, EventArgs e)
{
Close();
}

private void textBox3_TextChanged(object sender, EventArgs e)
{

}
}
}

PRACTICA 2 (C.CONSOLA)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int Costo, Ganancia, Impuesto, Ca;
Console.WriteLine("introduce el valor del auto");
Ca = int.Parse(Console.ReadLine());
Impuesto = (Ca * 6) / 100;
Ganancia = (Ca * 12) / 100;
Costo = Ca + Impuesto + Ganancia;
Console.WriteLine("el impuesto es de_ {0}", Impuesto);
Console.WriteLine("la ganancia del vendedor es_ {0}", Ganancia);
Console.WriteLine("el costo final del auto es_ {0}", Costo);
Console.ReadKey();
}
}
}

PRACTICA 2 (B.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 practica__C.v_
{
public partial class Form1 : Form
{
int Ct, G, I, Ca;
public Form1()
{
Ct = G = I = Ca = 0;
InitializeComponent();
}

private void pictureBox1_Click(object sender, EventArgs e)
{

}

private void Form1_Load(object sender, EventArgs e)
{

}

private void label1_Click(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
Ca = int.Parse(textBox1.Text);
I = (Ca * 6) / 100;
G = (Ca * 12) / 100;
Ct = I + G + Ca;
textBox4.Text = Ct.ToString();
textBox2.Text = I.ToString();
textBox3.Text = G.ToString();
}

private void button3_Click(object sender, EventArgs e)
{

}

private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
textBox4.Clear();
}
}
}

No hay comentarios:

Publicar un comentario