Problema 1 en console
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace practica_5_trabajo_1
{
class Program
{
static void Main(string[] args)
{
int valor1, valor2;
Console.WriteLine("Introdusca 2 numeros enteros diferentes");
Console.Write("numero1=");
valor1 = int.Parse(Console.ReadLine());
Console.Write("numero2=");
valor2 = int.Parse(Console.ReadLine());
if (valor1 > valor2)
{
Console.WriteLine("\nel primer numero es mayor");
}
else
{
Console.WriteLine("\nel primer numero es menor");
}
Console.ReadLine();
}
}
}
Prolema 2 en console
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace practica_5_trabajo_2
{
class Program
{
static void Main(string[] args)
{
double tiempo, P;
Console.WriteLine("Introduce valor de Tiempo");
tiempo = double.Parse(Console.ReadLine());
if (tiempo <= 35.00) { P = 0.46 * tiempo; } else { P = 0.19 * tiempo + 9.45; } Console.WriteLine("\nla presion es " + P + "psi"); Console.ReadLine(); } } }
Problema 3 en windows
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_5_trabajo_3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int numero = int.Parse(textBox1.Text);
if (numero % 2 == 0)
{
label1.Text = "El numero es par";
}
else
{
label1.Text = "El numero es inpar";
}
}
private void button2_Click(object sender, EventArgs e)
{
label1.Text = "Introdusca un numero";
textBox1.Clear();
textBox1.Focus();
}
}
}
Problema 4 en windows
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_5_problema_4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double largo, ancho, area, precio, precio_total;
largo = double.Parse(textBox1.Text);
ancho = double.Parse(textBox2.Text);
precio = double.Parse(textBox3.Text);
area = largo * ancho;
if (area <= 400.00) { precio_total = area * precio; } else { precio_total = area * (precio - precio * 0.10); } textBox4.Text = precio_total.ToString(); } } }
domingo, 7 de diciembre de 2008
Suscribirse a:
Enviar comentarios (Atom)
No hay comentarios:
Publicar un comentario