Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
28 lines (20 loc) · 790 Bytes

File metadata and controls

28 lines (20 loc) · 790 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// Demonstrate the short-circuit operators.
public class SCops {
public static void main(String[] args) {
// TODO Auto-generated method stub
int n, d, q;
n = 10;
d = 2;
if (d != 0 && (n % d) == 0) System.out.println(d + " is a factor of " + n);
d = 0; // now, set d to zero.
// Since d is zero, the second operand is not evaluated.
if ( d != 0 && (n % d) == 0 ) // The short-circuit operator prevents a division by zero.
System.out.println(d + " is a factor of " + n);
/*
* Now, try same thing without short-circuit operator.
* This will cause a divide-by-zero error.
* */
if (d != 0 & (n%d) == 0) // Now both expressions are evaluated, allowing a division by zero to occur.
System.out.println(d + " is a factor of " + n);
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.