Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1.  
  2. // Classe Conversor - Incompleta
  3.  
  4. public class Conversor{
  5.  
  6.     public double CelsiusToKelvin(double celsius)
  7.     {
  8.  
  9.         return kelvin;
  10.     }  
  11.  
  12.  
  13. }
  14.  
  15.  
  16. // No botão Calcular, se a opção escolhida for de Celsius Para Kelvin
  17.  
  18. double valor = Convert.ToDouble(txt_valor.Text);
  19.  
  20. Conversor objConversor = new Conversor();
  21.  
  22. double kelvin = objConversor.CelsiusToKelvin(valor);
  23.  
  24. txt_resultado.Text = Convert.ToString(kelvin);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement