- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise03.java
More file actions
Latest commit
11 lines (10 loc) · 483 Bytes
/
Copy pathExercise03.java
File metadata and controls
11 lines (10 loc) · 483 Bytes
1
2
3
4
5
6
7
8
9
10
11
publicclassExercise03 {
publicstaticvoidmain(Stringarg[]) {
// Write a program that asks the user to enter two integers, then
// prints their quotient and remainder in a nicely-formatted sentence.
// So if the user enters 23 and 5, it would print something like:
// "23 divided by 5 is 4, with a remainder of 3."
// Reminder: You can use StdIn.readInt() to input integers.
// Add your code here, then click "run" to test it.
}
}