Computer Science, asked by guptakartik791, 2 months ago

write a program that divide two numbers 153 and 22 and display the quotient and remainder​

Answers

Answered by TJain9
0

Answer:

153/22 (quotient)

153%22 (remainder)

Explanation:

The program that we can write for displaying the quotient and remainder

153/22 (quotient)

153%22 (remainder)

and now use the print command as per the programming language

In JAVA it should be written as

System.out.println(153/22+" is quotient");

System.out.println(153%22+" is reminder");

In UNIX is is

echo "153/22"

echo "153%22"

Similar questions