Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace volumenRec
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. int largo = 0;
  14. int ancho = 0;
  15. int altura = 0;
  16.  
  17. Console.WriteLine("INTRODUCE EL VALOR DEL LARGO");
  18. largo = int.Parse(Console.ReadLine());
  19.  
  20.  
  21. Console.WriteLine("INTRODUCE EL VALOR DEL ANCHO");
  22. ancho = int.Parse(Console.ReadLine());
  23.  
  24.  
  25.  
  26. Console.WriteLine("INTRODUCE EL VALOR DE LA ALTURA");
  27. altura = int.Parse(Console.ReadLine());
  28.  
  29. }
  30.  
  31. static float calculav ()
  32.  
  33. {
  34.  
  35.  
  36.  
  37. }
  38.  
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement