Dotnet File LATEST
Dotnet File LATEST
03217702017
WAP to build a simple calculator
Public Class Form1
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim a, b, c As Integer
a = TextBox1.Text
b = TextBox2.Text
c=a-b
TextBox3.Text = c
End Sub
End Sub
End Class
BCA-III A DEEPAK KUMAR ROLL NO. 03217702017
BCA-III A DEEPAK KUMAR ROLL NO. 03217702017
WAP to insert and delete an element in an array from a specified position and also
print smallest element in array
Public Class Form1
Dim ar As New ArrayList