Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions operator
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package operators;
//importing scanner class
import java.util.Scanner;
//working with arithmetic operators
//+,-,*,%,/

public class Operators {
//declaring variables
static int f_num,s_num,sum,diff,product,rem;

public static void main(String[] args) {
//creating scanner object
Scanner input= new Scanner(System.in);
//ask user to enter two numbers
System.out.println("Enter the first number");
//getting the first number
f_num=input.nextInt();
System.out.println("Enter the second number");
//getting the second number
s_num=input.nextInt();

}

}