Just Student Total Av in Windows Application

Jayakumars
Posted by Jayakumars under ASP.NET AJAX category on | Points: 40 | Views : 1348
Just Student Total Av in Windows Application
=================================================
int tot =Convert.ToInt32(Tam.Text) + Convert.ToInt32(Eng.Text) + Convert.ToInt32(mat.Text) + Convert.ToInt32(sc.Text) + Convert.ToInt32(sc.Text);
int av = tot / 5;
Total.Text = tot.ToString();
avg.Text = av.ToString() ;

Comments or Responses

Login to post response