-
Notifications
You must be signed in to change notification settings - Fork 0
/
arithmetic.java
49 lines (41 loc) · 1.03 KB
/
arithmetic.java
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
public class arithmetic{
public static void main(String args[]){
// int a=99, b=98;
// float c=(float)a/b;
// System.out.println(c);
//Area of triangle
// Float a,b,c,S;
// Float area;
// System.out.println("Enter all side");
// Scanner sc =new Scanner(System.in);
// a=sc.nextFloat();
// b=sc.nextFloat();
// c=sc.nextFloat();
// S=(a+b+c)/2f;
// area=(float) Math.sqrt(S*(S-a)*(S-b)*(S-c));
// System.out.println("area of traingle"+area);
// Roots of quadratic eqn
// int a,b,c;
// double r1,r2;
// System.out.println("Enter the values");
// Scanner Sc=new Scanner(System.in);
// a=Sc.nextInt();
// b=Sc.nextInt();
// c=Sc.nextInt();
// r1=(-b+Math.sqrt(b*b-(4*a*c)))/(2*a);
// r2=(-b-Math.sqrt(b*b-(4*a*c)))/(2*a);
// System.out.println(r1);
// System.out.println(r2);
//Bitwise demo
// int x=0b1000;
// int y;
// y=x<<2;
// System.out.println(y);
// int a=10;
// int b=15;
// a=a^b;
// b=a^b;
// a=a*b;
// System.out.println(a+" "+b);
}
}