Computer Science, asked by guddu45, 1 year ago

write qb64 statement to add values of x and y and store the sum in Z

Answers

Answered by siddhartharao77
14
PRINT "Enter the first number"

INPUT x

PRINT "Enter the second number"

INPUT y

z = x + y

PRINT "Sum of digits is "; z

END
Answered by satyammridul23379
2

rem to add the value of x and y and store it in z

cls

input "enter the value of x";x

input"enter the value of y";y

print "z is"x+y

end

Similar questions