import std.stdio;
int main(string[] args) {
int a = 5;
int b = 20;
int c ;
if ( a && b ) {
writefln("Line 1 - Condition is true/n" );
}
if ( a || b ) {
writefln("Line 2 - Condition is true/n" );
}
/* lets change the value of a and b */
a = 0;
b = 10;
if ( a && b ) {
writefln("Line 3 - Condition is true/n" );
} else {
writefln("Line 3 - Condition is not true/n" );
}
if ( !(a && b) ) {
writefln("Line 4 - Condition is true/n" );
}
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265961.html