Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
No Result
View All Result
Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
Home Programs in java

Java program to find quotient and remainder

admin by admin
April 21, 2020
Reading Time:2min read
0

Hello Friends! Welcome to the programming shortcut and to we will run java program to find quotient and remainder and compute dividend divisor quotient remainder by this program will help you to make quotient and remainder calculator

RELATED POSTS

Program to find out code of grade and percentage calculator in Java

Java program to solve mathematical expressions

Difference and similarities between java and c++

Java program to find quotient and remainder

import java.util.Scanner;
public class Qu {
public static void main(String[] args) {
int dividend, divisor, quotient, remainder;
Scanner in = new Scanner(System.in);
System.out.println(“Enter the dividend:”);
dividend = in.nextInt();
System.out.println(“Enter the divisor:”);
divisor = in.nextInt();
if (divisor > 0) {
quotient = dividend / divisor;
remainder = dividend % divisor;
System.out.println(” Divident is : ” + dividend + “\n Divisor is : ” + divisor + “\n Remainder is : ” + remainder + “\n Quotient is: ” + quotient);
} else {
System.out.println(“Divisor is not allow, try Divisor is must greater then Zero”);
}
}
}
Output:
Enter the dividend:
34564
Enter the divisor:
433
Divident is : 34564
Divisor is : 433
Remainder is : 357
Quotient is: 79

I make this programming and hope you are like the post if are you like the post you can please comment and share the post to reach more people.
If any doubt about this Java programming code or input & output please comment below
If you have another question about Java programming send an email by contacting us form is given on the page right side.

Please share your experience about this post,
Thank You!

ShareTweetPin
admin

admin

Related Posts

Program to find out code of grade and percentage calculator in Java
Programming Language

Program to find out code of grade and percentage calculator in Java

April 5, 2022
Programs in java

Java program to solve mathematical expressions

April 21, 2020
Programming Language

Difference and similarities between java and c++

April 3, 2022
.Net

Difference between FOPs and OOPs

April 16, 2020
Programming Language

How to set path in java in windows 10, 8.1, 8, 7

April 16, 2020
Programming Language

Object-Oriented Programming (OOP) in Java

January 17, 2020
Next Post

how to find quotient and remainder in c program

How to find quotient and remainder in c++ program

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

I agree to the Terms & Conditions and Privacy Policy.

Popular Stories

  • Short name by java program

    0 shares
    Share 0 Tweet 0
  • Relation of two numbers in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c++

    0 shares
    Share 0 Tweet 0
  • Java program to perform sum of digits until single digit is obtained

    0 shares
    Share 0 Tweet 0
ADVERTISEMENT
C, C++ & Java Programming tutorial with example Programming Shortcut

Hi Friends, Programming Shortcut is Educational Blog, that From you Learn Programming in Multiple languages like C, C++, Java Programming Language.

LEARN MORE »

Recent Posts

  • Armstrong number in c
  • Program to find out code of grade and percentage calculator in Java
  • Program to find out the grade and percentage calculator in cpp

Categories

  • .Net
  • Programming Language
  • Programs in c
  • Programs in cpp
  • Programs in java
  • Uncategorized

All © 2021 Programming Shortcut - Present By Math Training.

No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us

All © 2021 Programming Shortcut - Present By Math Training.

This website uses cookies. By continuing to use this website you are giving consent to cookies being used. Visit our Privacy and Cookie Policy.