Computer Science, asked by sreedhar6828, 1 year ago

Write a project in vb to design a suitable form to add two numbers and display their sum

Answers

Answered by BrainlyAbir
1
create a vb form project
then,
type this program:
let a,b,c
print "Enter two numbers"
input a
input b
c=a+b
print c
Similar questions