Computer Science, asked by ArushD, 1 day ago

Write a program to find quotient and remainder of number 8 when
divided by 3. (For JAVA programs make Variable Description Table and also write Output)

Answers

Answered by samarthkrv
1

Answer:

public class Main

{

public static void main(String[] args) {

 System.out.println(8/3.0);

 System.out.println(8%3);

}

}

Explanation:

Similar questions