Java program to Divide,Subtract and Multiply

Java program to Divide,Subtract and Multiply

Hi, i need an example program of Java to Divide,Subtract and Multiply the X value.

View Answers

April 8, 2008 at 7:40 PM

hi

public class myClass{
static class Returner{
int a,b,c,d;
}

public myClass(){
}
public static Returner getVals(int x, int y){
Returner returner = new Returner();
returner.a = x + y;
returner.b = x * y;
returner.c = x - y;
returner.d = x / y;
return returner;
}
public static void main(String[] args){
myClass.Returner ret = myClass.getVals(40, 30);
System.out.println("Sum of two number =" + ret.a +".");
System.out.println("Multiple of two number is="+ret.b + ".");
System.out.println("Subtraction of two number is="+ret.c + ".");
System.out.println("Divide of two number=" + ret.d + ".");
}
}









Related Tutorials/Questions & Answers:
program - Java Beginners
Java program to Divide,Subtract and Multiply  Hi, i need an example program of Java to Divide,Subtract and Multiply the X value.  hipublic... of two number is="+ret.c + "."); System.out.println("Divide
Write a C language program to read two matrices and multiply them?
Write a C language program to read two matrices and multiply them?  Write a C language program to read two matrices and multiply them?   ...++ ) { for ( d = 0 ; d < q ; d++ ) printf("%d\t", multiply[c][d
Advertisements
code for a program
code for a program   Write a program which has 2 numbers. There should be an option to add, multiply, divide and subtract these numbers a. If user.... If user opts "M" - Multiply the numbers d. If user opts "D" - Divide the numbers e
Java bigdecimal multiply example
Java bigdecimal multiply example       Example below demonstrates bigdecimal class multiply... BigDecimal multiply(BigDecimal multiplicand) BigDecimal objects with names x ,y
Java bigdecimal multiply method example
Java bigdecimal multiply method example   ...;Java_bigdecimal_multiply_example {   public static ... multiply method example. Method returns a bigdecimal object value. Method
Calculator program in Java
Calculator program in Java is used by programmer to add, subtract, multiply or divide two integer numbers that are input by system. In the given example... program in Java package Tutorial; import java.io.*; class calculator
ModuleNotFoundError: No module named 'etl-multiply'
ModuleNotFoundError: No module named 'etl-multiply'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'etl-multiply' How to remove the ModuleNotFoundError: No module named '
multiply of 100 digits numbers
multiply of 100 digits numbers  multiplying 100 digits numbers to eachother
Mysql Multiply
Mysql Multiply       Mysql Multiply is used to define the product of any two or more... illustrate an example from 'Mysql Multiply'.The example elaborate a query that help you
Mysql Multiply
Mysql Multiply       Mysql Multiply is used to define the product of any two or more numbers... from 'Mysql Multiply'. The example elaborate a query that help you to return
java program
void multiply(int a,int b); public void divide(int a,int b); } class...java program  arithmetic operation prm using interface concepts in java   Hi Friend, Try the following code: interface Operations
How to Write a Calculator Program in Java?
How to Write a Calculator Program in Java? In this Java Tutorial you will learn how to write a Calculator program in Java in easy steps. Calculator program..., subtraction, multiplication or division. In this example of writing program in Java
java program for
java program for   java program for printing documents,images and cards
a Java program
a Java program    Write a Java program to print even numbers from 2 to 1024? Write a Java program to print ? My Name is Mirza? 100 times? Write a Java program to print Fibonacci Series? Write a Java program to reverse a number
Java Program
Java Program  A Java Program that print the data on the printer but buttons not to be printed
java program
java program  write a program to print 1234 567 89 10
java program
java program  Write a program to demonstrate the concept of various possible exceptions arising in a Java Program and the ways to handle them.  ... in Java
java program
java program  write java program for constructor,overriding,overriding,exception handling
java program
java program  how to write an addition program in java without using arithematic operator
java program
java program  write a java program to display array list and calculate the average of given array
java program
java program  write a java program to display array list and calculate the average of given array
Java Program
Java Program  java program to insert row in excel sheet after identifying an object
java program
java program  java program to implement the reflection of a particular class details like constructor,methods and fields with its modifiers
java program
java program  Write a java program to do matrix addition operation On two given matrices
java program
java program  Write a java program to find the number of Positive numbers in m* n matrix
java program
java program  Write a program to create an applet and display The message "welcome to java
java program
java program  hi friends how to make a java program for getting non prime odd numbers in a given series
java program
java program   Write a program to find the difference between sum of the squares and the square of the sums of n numbers
java program
java program  write a program to create text area and display the various mouse handling events
program in java
program in java  write a reverse program in java using string buffer.the input and out put as follows. input- hi good mornig out put-ih doog ginrom
java program
java program  Develop the program calculatePipeArea. It computes the surface area of a pipe, which is an open cylinder. The program accpets three values: the pipes inner radius, its length, and the thickness of its wall
java program
java program  . Develop the program calculatePipeArea. It computes the surface area of a pipe, which is an open cylinder. The program accpets three values: the pipes inner radius, its length, and the thickness of its wall
java program
java program  . Write a program which performs to raise a number to a power and returns the value. Provide a behavior to the program so as to accept any type of numeric values and returns the results
Java program
Java program  Write a program which performs to raise a number to a power and returns the value. Provide a behavior to the program so as to accept any type of numeric values and returns the results
java program
java program  write a java program to compute area of a circle.square,rectangle.triangle,volume of a sphere ,cylinder and perimeter of cube using method over riding
java program
java program  write a java program to compute area of a circle.square,rectangle.triangle,volume of a sphere ,cylinder and perimeter of cube using method over riding
java program
java program   A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A java program to display above triangle
java program
java program  write a program to create server and client such that server receives data from client using BuuferedReader and sends reply to client using PrintStream
java program
java program  write a program to read 10 numbers from user and store it in a array. display the maximum n minimum number in the array
java program
java program  write a java program to read a file which hold email address validate email address tohave formate @.* and replace all .com email address
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
Java Program
Java Program  I want to Write a program in JAVA to display to create a class called MATRIX using a two-dimensional array of integers. Perform the addition and subtraction of two matrices. Help me
java program
java program  i want a applet program that accepts two input strings using tag and concatenate the strings and display it in status window. please give mi he code for this in core java
java program
java program  i want a applet program that accepts two input strings using tag and concatenate the strings and display it in status window. please give mi he code for this in core java
java program
java program  i want a applet program that accepts two input strings using tag and concatenate the strings and display it in status window. please give mi he code for this in core java
java program
java program  Write a program that computes loan payments. The loan can be a car loan, a student loan, or a home mortgage loan. The program lets the user enter the interest rate, number of years, loan amount, and displays
java program
java program  . Develop a program that computes the distance a boat travels across a river, given the width of the river, the boat's speed perpendicular to the river, and the river's speed. Speed is distance/time
java program
java program  write a program that accepts only 3 integer values as command line arguments.print the values enter by the user. handle ArrayIndexOutofbounds exception and number format exception by providing appropriate message

Ads