Computer Science, asked by sindhugeethakrishnan, 6 months ago

Write a program to print the quotient and remainder of the integer 187 by integer 13

Answers

Answered by Arya2222
8

Answer:

public class QuotientRemainder {

   public static void main(String[] args) {

       int dividend = 25, divisor = 4;

       int quotient = dividend / divisor;

       int remainder = dividend % divisor;

       System.out.println("Quotient = " + quotient);

       System.out.println("Remainder = " + remainder);

   }

}

Explanation:

This not exactly correct..I have made a program for you please look at the screenshot..

Please mark me as the BRAINLIEST!!

Also:

  • Follow me
  • Rate me
  • Thank me Please Dear
  • Be my Friend too
Attachments:
Answered by narzispatel123
2

Explanation:

plz follow me rate me...

Similar questions