-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsum.java
More file actions
36 lines (36 loc) · 817 Bytes
/
sum.java
File metadata and controls
36 lines (36 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import java.util.Scanner;
class sum
{
void add(int x, int y)
{
System.out.println("Sum of "+x+" + "+y+" is : "+(x+y));
}
void sub(int x, int y)
{
System.out.println("Subtraction of "+x+" - "+y+" is : "+(x-y));
}
void mul(int x, int y)
{
System.out.println("Multiplication of "+x+" * "+y+" is : "+(x*y));
}
public static void main(String[] args)
{
sum s=new sum();
Scanner sc=new Scanner(System.in);
char c='y';
do
{
int a1, b1;
System.out.println("Enter first number : ");
a1=sc.nextInt();
System.out.println("Enter second number : ");
b1=sc.nextInt();
s.add(a1,b1);
s.sub(a1,b1);
s.mul(a1,b1);
System.out.println("Enter 'Y' to continue again : ");
c=sc.next().charAt(0);
c=Character.toUpperCase(c);
}while(c=='Y');
}
}