viernes, 11 de septiembre de 2009

PRACTICAS 2-1 CONSOLA Y WINDOWS


PRACTICA 2-1 EN CONSOLA


using System;


using System.Collections.Generic;


using System.Linq;


using System.Text;



namespace practica2._1consola


{


class Program


{


static void Main(string[] args)


{


int N, M, P, RS;


Console.WriteLine("introduce la cantidad de resistencia de 56 ohms");


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


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


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


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


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


RS= N * 56 + M * 33 + P * 15;


Console.WriteLine("introduce la resistencia total en serie es {0} ohms",RS );


Console.ReadKey();


}


}


}









No hay comentarios:

Publicar un comentario