Computer Science, asked by decrichaa31, 5 hours ago

Draw a flowchart to print the quotient and remainder of any two nos a and b to be inputted from the console.​

Answers

Answered by abhijeettirkey20
0

Answer:

I am asking this same question..

Answered by shilpa85475
0

If the two numbers are a and b .

Then we know the quotient is the number by which the given number will be divisible, The remainder is the number that is remained after subtracting the divisible number.

Explanation:

1. start

2. Take the two numbers from the users as int num1 and int num2.

3. Declare and Initialize the quotient and remainder to 0.

3. print the two numbers taken from the users.

4.set quotient =num1/num2;

5. set remainder = num1% num2

6.Print the values of quotient and reminder.

7.Stop.

Similar questions