Computer Science, asked by sobiarao, 3 months ago

write a program that stores two values into integer variable perform arithmetic operations on them and display the result​

Answers

Answered by himanshu2006vps
1

// Program in java

import java.util.Scanner;

public class JavaProgram

{

public static void main(String args[])

{

int first, second, add, subtract, multiply;

float devide;

Scanner scanner = new Scanner(System.in);

System.out.print("Enter Two Numbers : ");

first = scanner.nextInt();

second = scanner.nextInt();

add = first + second;

subtract = first - second;

multiply = first * second;

devide = (float) first / second;

System.out.println("Sum = " + add);

System.out.println("Difference = " + subtract);

System.out.println("Multiplication = " + multiply);

System.out.println("Division = " + devide);

}

}

Similar questions