expand icon
book Programming Logic and Design, Introductory 7th Edition by Joyce Farrell cover

Programming Logic and Design, Introductory 7th Edition by Joyce Farrell

النسخة 7الرقم المعياري الدولي: 1285225562
book Programming Logic and Design, Introductory 7th Edition by Joyce Farrell cover

Programming Logic and Design, Introductory 7th Edition by Joyce Farrell

النسخة 7الرقم المعياري الدولي: 1285225562
تمرين 11

Draw a flowchart or write pseudocode to represent the logic of a program that allows the user to enter two values. The program outputs the product of the two values.

الحلول خطوة بخطوة
موثّق
like image
like image

الخطوة 1 من2

The following pseudo code inputs for enter two values from user then calculates and displays product of them.

start

input num1

input num2

set product = num1*num2

output product

stop


الخطوة 2 من 2

close menu
Programming Logic and Design, Introductory 7th Edition by Joyce Farrell
cross icon