forked from codehouseindia/Java-Programs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalc.java
More file actions
69 lines (64 loc) · 1.88 KB
/
Calc.java
File metadata and controls
69 lines (64 loc) · 1.88 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// https://www.facebook.com/anushka.saine.735/posts/137136021429328
// subscribed by status gram
import java.util.*;
//Simple calculator
public class calc
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
double a, b, c = 0.0;
System.out.print("Enter the first number \n");
a = in.nextDouble();
System.out.print("And enter second \n");
b = in.nextDouble();
System.out.print("Choose the operation " +
"\n1.Addition" +
"\n2.Subtraction" +
"\n3.Multiplication" +
"\n4.Division" +
"\n5.Power" +
"\n#Please enter the number of operation \n");
double somethin = in.nextDouble();
double addition = 1;
double subtraction = 2;
double multiplication = 3;
double division = 4 ;
double power = 5;
if (somethin == addition)
{
c = a + b;
System.out.println(a + " + " + b + " = " + c);
}
else if (somethin == subtraction)
{
c = a - b;
System.out.println(a + " - " + b + " = " + c);
}
else if (somethin == multiplication)
{
c = a * b;
System.out.println(a + " * " + b + " = " + c);
}
else if (somethin == division)
{
c = a / b;
System.out.println(a + " / " + b + " = " + c);
}
else if (somethin == power)
{
System.out.println("Enhance A or B?" +"\n1.A" +"\n2.B");
double enhance = in.nextDouble();
double first = 1;
double second = 2;
if (enhance == first)
{
System.out.println(Math.pow(a, 2));
}
else if (enhance == second);
{
System.out.println(Math.pow(b, 2));
}
}
}
}