Question
Write a pseudocode which will accept two integers from the user and calculate the sum and product. Then display the answer to the user.
Answers
read m,n
sum = m+n
product = m*n
print sum,product
sum = m+n
product = m*n
print sum,product
Write Pseudo-code for Summing consecutive integers
math
Related Questions
Write a pseudocode program that asks the user for an integer between 1 and 12. The program is to ca...
Write a program that accepts two numeric values from the user and displays all integers between thes...
Write the pseudocode to accept the item name, price and quantity from a user display the item name a...
Write a pseudocode algorithm that will accept a group of numbers and Calculate its sum. The program...