-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram1.java
More file actions
76 lines (56 loc) · 1.07 KB
/
Copy pathProgram1.java
File metadata and controls
76 lines (56 loc) · 1.07 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
70
71
72
73
74
75
76
class Program1
{
public static void main(String arg[])
{
/* int v1=10;
int v2=10;
int v4=40;
int v5=50;
int v3;
System.out.print("hello DEVRAJ\n");
System.out.print("hello sahil\n");
System.out.print("hello arvind\n\t");
System.out.print("hello yogesh");
System.out.print("hello shubham\n");
System.out.print("hello yaaseen\n");
v3=v1+v2;
System.out.print("the adddition is +v3+ thank you\n");
int d=347;
int e=4;
int g=d/10;
int f=d%e;
int x=56;
int x+=56; //x=x+56;
System.out.print("\n"+g);
System.out.print("\n"+f);
if(v1==v2||v4==v5)
{
System.out.print("\ntrue" );
}
if(v1!=v2)
{
System.out.print("\nyogesh is right!!!true " );
}
else
{
System.out.print("\nyogesh is right!!!false" );
}
*/
int a=10;
int b=a++;
int c=20;
int d=++c;
System.out.print(b);
System.out.print("\n");
System.out.print("the value of a is"+a);
System.out.print("\n");
System.out.print(c);
System.out.print(d);
/*
int h=10;
int j=13;
int k=h>>>2;
System.out.print(k);
*/
}
}