mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
1 line
852 B
HTML
1 line
852 B
HTML
<div><br /></div><div style="--en-codeblock:true;box-sizing: border-box; padding: 8px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px; color: rgb(51, 51, 51); border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; background-color: rgb(251, 250, 248); border: 1px solid rgba(0, 0, 0, 0.14902); background-position: initial initial; background-repeat: initial initial;"><div>public class SwapIntegerWithoutTemp {</div><div><br /></div><div> public void swapAddition() {</div><div> int a = 3;</div><div> int b = 5;</div><div><br /></div><div> a = a + b; // a=8, b=5</div><div> b = a - b; // a=8, b=3</div><div> a = a - b; // a=5, b=3</div><div> }</div><div>}</div></div><div><br /></div> |