Computer Science, asked by shreshtah, 4 months ago

Write a program to accept 2 numbers and print the quotient when number 1 is
divided by number 2.

Answers

Answered by vtzdude
0

Answer:

Explanation:

int n1,n2;

cin>>n1>>n2;

int rem=n1/n2;

cout<<rem;

return 0;

Similar questions