Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

C:\Documents and Settings\Administrator\My ... 2008\Projects\VTCClass\VTCClass\Form1.cs using using using using using using using using System; System.Collections.

Generic; System.ComponentModel; System.Data; System.Drawing; System.Linq; System.Text; System.Windows.Forms;

namespace VTCClass { public partial class Form1 : Form { public Form1() { InitializeComponent(); }

private void buttonClick_Click(object sender, EventArgs e) { // type variableName=3 int x = 400; byte y = 30; y = (byte)x; } /* * ovo nije dobro jer se prilikom ove konverzije gubi vrednost y * odnosno u y kao byte tip podatka ne moze da stane integer jer byte * prima samo 256 sto znaci da je y jednako 144 (400-256) } }

You might also like