Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create operator #20

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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();

}

}