|
Post by Admin on Jun 2, 2013 16:02:19 GMT
Le te jene dhene dy numra a dhe b,te gjendet shuma e tyre. P.S me c# si dhe fillimisht do doja qe te paraqesim detyrat pak me fillestare
|
|
|
Post by liraku02 on Jun 4, 2013 19:26:16 GMT
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Add { public partial class calci : Form { public calci() { InitializeComponent(); } private void But_Add_Click(object sender, EventArgs e) { int a = Convert.ToInt32(Txt_1.Text ); int b = Convert.ToInt32(Txt_2.Text); Ans.Text = a + b; } } }
|
|