Advertisement
AalborgHTX

Casting

Jan 6th, 2021
998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. namespace WindowsFormsApp15
  2. {
  3.     public partial class Form1 : Form
  4.     {
  5.         public Form1()
  6.         {
  7.             InitializeComponent();
  8.         }
  9.  
  10.         float floattal = 5.8f;
  11.         double doubletal = 8.9;
  12.         int inttal = 7;
  13.  
  14.         private void btnKnap_Click(object sender, EventArgs e)
  15.         {
  16.             int resultat1 = (int) floattal + (int) doubletal;
  17.             int resultat2 = (int)(floattal + doubletal);
  18.  
  19.             lbl1.Text = resultat1.ToString();
  20.             lbl2.Text = resultat2.ToString();
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement