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
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