We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3965f19 commit 91c75c4Copy full SHA for 91c75c4
1 file changed
data/java-cheat-sheet.json
@@ -99,13 +99,22 @@
99
{
100
"title": "সহজে অদলবদল দুইটির মান",
101
"items": [{
102
- "code": "let x =5, y=10;"
+ "code": "int x =5, y=10;"
103
},
104
105
- "code": "[x,y]=[y,x];"
+ "code": "int temp;"
106
107
108
- "code": "System.out.println(x); //10;"
+ "code": "temp = x;"
109
+ },
110
+ {
111
+ "code": "x = y;"
112
113
114
+ "code": "y = temp;"
115
116
117
+ "code": "System.out.println(x); //10"
118
119
120
"code": "System.out.println(y); //5"
0 commit comments