You are on page 1of 1

Problem Definition

1. Create a program that accept two simultaneously integers. Print quotient and remainder.

Algorithm:
Input: a, b
Process: quo = a / b
rem = a% b
Output: quo, rem

Program Design

Flowchart

Start

a = 0; b = 0;
quo = 0;
rem = 0;

input(a, b)

quo = a / b

quo = a / b

print(quo, rem)

Stop

You might also like