โ Back to User Input
Question 348
Quotient and Remainder
Quotient and Remainder
Read two integersaandbfrom input. Print the quotient and remainder ofadivided bybon two lines in this exact format. For example, if the input is: 17 5 print: Quotient: 3 Remainder: 2 Use integer division/and the modulo operator%.
Expected Output:
Quotient: 3 Remainder: 2
Topics:
User Input
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.