Ternary operator usage with OR in subexpression in C# - c#

I understand standard usage of ternary operator..
string message = hasError=="Y" ? "There's an error!" : "Everything seems fine...";
But how do I add an OR in the subexpression..
if((hasError=="Y")||(seemsfine=="N")){
message="There's an error!";
}else{message="Everything seems fine...";
}
Any help is sincerely appreciated
Thanks

You can do it like this
string message = hasError == "Y" || seemsfine == "N" ? "There's an error!" : "Everything seems fine...";
There is not much difference. This is because the ternary operator in C# is that handy!
Ultimately, it is the result of the whole expression (that is, hasError == "Y" || seemsfine == "N") that matters, not how many conditions you have. You can put all other conditions if you want too, as long as the whole expression return true then it will assign the first element (left of :) to the variable and when the whole expression is false it assigns the second element (right of :) to the variable
Ternary operator is completely equivalent with if-else statement whose block is simply to assign value to single variable.
Thus,
if (a1 == 0 || a2 > 5 || a3 <= -7)
b = 1;
else
b = 2;
is completely equivalent to
b = a1 == 0 || a2 > 5 || a3 <= -7 ? 1 : 2; //note that there is no bracket here, but it is equivalent to if-else statement with bracket
When you have more than single variable to be assigned, then the equivalent breaks.
if (a1 >= 0)
b = 2;
else
c = 3; //notice the variable difference, you cannot use ternary operator anymore.
As long as it does not hinder the readability of the code for you, you can even put multiple ternary operators like this
b = a1 > 0 && a2 < 0 ? 1 : (a3 < 5 ? 2 : 3);
which is equivalent to
if (a1 > 0 && a2 < 0)
b = 1;
else if (a3 < 5)
b = 2;
else
b = 3;

The initial expression can be as simple or as complicated as you need it to be, as long as the condition ultimately evaluates to a single boolean value, just like the first line of your if statement.
In other words, this:
if ((hasError == "Y") || (seemsfine == "N"))
message="There's an error!";
else
message="Everything seems fine...";
Is equivalent to this:
string message = (hasError == "Y" || seemsfine == "N")
? "There's an error!"
: "Everything seems fine...";

Related

c# code is unity, that I couldn't understand [duplicate]

This question already has answers here:
How do I use the conditional (ternary) operator?
(10 answers)
Closed 10 months ago.
I really need someone to explain this part of code float x = Random.Range(0,2) == 0 ? -1 : 1; I understand that it generates a random value of either 1 and -1, and that this float x = Random.Range(0,2) give x a value between 0 and 2, but what does this == 0 ? -1 : 1; do, and how does it function?
This is the conditional operator
The code is equivalent with:
float r = Random.Range(0,2);
float x;
if (r == 0)
x = -1;
else
x = 1;
With the conditional operator x can be initialized while with the equivalent if code I show x must be assigned after initialization. This doesn't matter for float but for other types it may matter.
As you said Random.Range(0,2) gives a value between 0 and 2. The question mark in this variable assignment is called a ternary operator and works like this: condition ? assign this value if true : assign this value if false.
So in your case if it equals 0, x will be set to -1, if it does not it will equal 1
You can find out more here, at the official Microsoft docs
A question mark and colon in this circumstance is an inline if statement using the “ternary conditional operator”.
It acts similarly to an if statement but within a larger statement on a single line. For example this:
if( a > b )
largest = a;
else
largest = b;
Is equivalent to:
largest = ( a > b ? a : b );
If the conditional statement before the ? is true, the whole clause will become the value immediately after the question mark. If the conditional statement before the ? is false, the whole clause will become the value immediately after the colon (:).
You can use more than one of them in a line, for example:
bool a = false;
int i = 3;
Console.WriteLine(“a is “ + ( a ? “true” : “not true” ) + “ and i is “ + ( i == 3 ? “three” : “not three” ) + “!”);
Note that the “else” is not optional.
So in effect the code you posted is saying “if the random number == 0, x=-1, else x=1”.
It is ternary operator, it is similar to if else condition.
For example if you write var x = random == 0 ? -1 : 1; then in terms of if else condition it will be
if(random == 0)
{
x = -1;
}
else
{
x = 1;
}

Logical Exclusive OR's vs Conditional Logical OR's Within An For Loop [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
Recently I have been working on a project that requires a loop to run x amount of times. Simply wanted to exclude certain output x values.
Bellow is an example of what I THOUGH would work:
// Create a 1-58 Loop
for (int n = 1; n < 59; n++)
{
// Exclude Values
if (n != 2 || n != 11 || n != 16 || n != 40)
{
// Display Data
Console.WriteLine(n);
}
}
The operation n != 2 || n != 11 || n != 16 || n != 40 Under any normal situations would exclude the values that do not equal != value x. However this does not work and still renders all values and ignores the operation once a or statement || is introduced.
Bellow is a solution I found after playing around for a bit:
// Create a 1-58 Loop
for (int n = 1; n < 59; n++)
{
// Exclude Values
if (n == 2 ^ n == 11 ^ n != 16 ^ n == 40)
{
// Display Data
Console.WriteLine(n);
}
}
So my question is why does the Logical exclusive || not work in a for loop but a Conditional logical ^ does? I'm pulling my information from this wiki. If i'm wrong about something please have no hesitations to correct me!
if (n != 2 || n != 11 || n != 16 || n != 40)
This will be true on a 2. Because a 2 is not 11.
If you want to exclude those. You should do:
if (n != 2 && n != 11 && n != 16 && n != 40)
^ is the logical exclusive OR, while || is the conditional logical OR. Exclusive OR is different than OR in that exclusive OR requires that one AND ONLY ONE of the conditions evaluates to true, whereas a conditional OR will also return true if both conditions evaluate to true.
Also note that the conditional OR (||) will return as soon as any condition evaluates to true (evaluated from left to right); no other conditions are evaluated since they would have no affect on the outcome (this makes it different than the | operator, where all conditions are evaluated).
Let's take a look at the statement that works:
if (n == 2 ^ n == 11 ^ n != 16 ^ n == 40)
If we break this down for one of the values we want to exclude, say 2 for example, we have:
if (true ^ false ^ true ^ false) =>
\ / / /
\ / / /
if ( true ^ true ^ false ) =>
\ / /
\ / /
if ( false ^ false ) =>
\ /
\ /
if ( false )
Then let's look at the condition that doesn't work and now we see why:
if (n != 2 || n != 11 || n != 16 || n != 40)
For the number 2, this becomes:
if (false || true || true || true)
\ /
\ /
if ( true ) // evaluation stops at the first `true` result
So what else can we do in this situation? Well, we can swap the || operator with the && operator (which is the conditional logical AND operator), which only returns true if both conditions evaluate to true (and it also short circuits if any condition returns false, since no further evaluations are necessary).
Let's take a look:
if (n != 2 && n != 11 && n != 16 && n != 40)
For the number 2, this becomes:
if (false && true && true && true)
\ /
\ /
if ( false ) // evaluation stops at the first `false` result

Checking range for textboxes

I have 2 textboxes on my form for which I'm trying to restrict the input. Here is a more detailed description of what I'm trying to do:
Code a method named IsValidData that checks that the Operand 1 and Operand 2 text boxes contain a decimal value between 0 and 1,000,000 (non-inclusive) and that the Operator text box contains a valid operator.
I know the way that I did this is wrong but I'm not sure how to fix it. The way I thought of it when writing the if statement is this:
check to make sure the value is >0 AND <=100 for the input in the txtOperand1 textbox and then did the same for the other textbox. Can someone please give suggestions on what I'm doing wrong? Thanks.
double operand1 = Convert.ToDouble(txtOperand1.Text);
double operand2 = Convert.ToDouble(txtOperand2);
if ((operand1 > 0 && operand1 <= 100) &&
(operand2 > 0 && operand2 <= 100))
return true;
something like this?
return decimal.TryParse(txt.Text, out decimal val) && (val > 0m & val < 1000000m)

&& operator behaves like || operator

I am a beginner and I've been trying to run a program that prints all the numbers from 1 to N (user input) except for those that are divisible by 3 and 7 at the same time. What my code does instead, however, is that it prints the numbers from 1 to N except for those that are divisible by 3 or 7. I examined it for a while and I have no idea why it does that. Please explain to me where I'm going wrong.
static void Main(string[] args)
{
int n = 0;
int a = 0;
n = Convert.ToInt32(Console.ReadLine());
while (a <= n)
{
a++;
if (a % 3 != 0 && a % 7 != 0)
{
Console.WriteLine(a);
}
}
Console.ReadKey();
}
When I reverse the signs of the if statement to == the && operator works properly, but if the sign is != it simply acts like an || operator, so that confuses me even more. The issue is most likely in the condition, but I can't see what is wrong with it.
"Except numbers that are divisible by 3 and 7 at the same time" can be broken down as follows:
"divisible by 3 and 7 at the same time" can be expressed as:
"(divisible by 3 and divisible by 7)"
"Except" can be expressed as "Not".
So you get:
Not (divisible by 3 and divisible by 7)
"divisible by 3" is (a % 3) == 0
"divisible by 7" is (a % 7) == 0
Giving:
Not ( (a % 3) == 0 and (a % 7) == 0)
In C# Not becomes ! and and becomes &&, so you can write the whole thing in C# as:
if (!((a % 3) == 0 && (a % 7) == 0))
Compare with your incorrect:
if (a % 3 != 0 && a % 7 != 0)
This latter is incorrect because it means:
if (the number is not divisible by 3) and (the number is not divisible by 7).
i.e. it means "Print the number if it is neither divisible by 3 nor divisible by 7", which means "don't print the number if it's divisible by 3 or 7".
To see why, first consider the number 6:
6 is not divisible by 3? = false (because 6 *is* divisible by 3)
6 is not divisible by 7? = true (because 6 is *not* divisible by 7)
So this resolves to if false and true which is, of course, false.
This result also applies to any other number divisible by 3, so no numbers divisible by 3 will be printed.
Now consider the number 14:
14 is not divisible by 3? = true (because 14 is *not* divisible by 3)
14 is not divisible by 7? = false (because 14 *is* divisible by 7)
So this resolves to if true and false which is, of course, false.
This result also applies to any other number divisible by 7, so no numbers divisible by 7 will be printed.
Hopefully you can see why it's wrong now. If not, consider this equivalent example:
Suppose we have four people, Tom the Carpenter, Dick the Carpenter, Harry the Butcher and Tom the Butcher.
This question is equivalent to the one you're asking:
Name every person who is (not called Tom and is not a Butcher)
And you should be able to see that this the same as asking:
Name every person except (anyone called Tom or anyone who is a Butcher)
In both cases, the answer is Dick the Carpenter.
The question you should have asked is:
Name every person except (anyone called Tom who is also a butcher)
To which the answer is Tom the Carpenter, Dick the Carpenter and Harry the Butcher.
Footnote: De Morgan's laws
The second law states that:
"not (A or B)" is the same as "(not A) and (not B)"
This is the equivalent of my example above where:
Name every person except (anyone called Tom or anyone who is a Butcher)
is the equivalent to:
Name every person who is (not called Tom and is not a Butcher)
where A is anyone called Tom and B is anyone who is a butcher and not is written as except.
You should read De Morgan's laws
"not (A and B)" is the same as "(not A) or (not B)"
also,
"not (A or B)" is the same as "(not A) and (not B)".
a % 3 != 0 && a % 7 != 0 is true when a is not divisible by 3 (a % 3 != 0) and not divisible by 7 (a % 7 != 0). So all as which are divisible by 3 or 7 (3,6,7,9,12,14,...) makes the whole expression false. You can rephrase it like !(a % 3 == 0 || a % 7 == 0)
All you really need is:
if ((a%21) != 0) Console.WriteLine(a);
Explanation: The numbers that are divisible by both a and b are essentially the numbers divisible by the LCM of a and b. Since, 3 and 7 are prime number, you are basically looking for numbers that are not divisible by 3*7.
Should be:
if ( !(a % 3 == 0 && a % 7 == 0) )
{
Console.WriteLine(a);
}
It means exactly: all the numbers except for those that are divisible by 3 and 7 at the same time.
You could also rephrase it as:
if ( a % 3 != 0 || a % 7 != 0 )
{
Console.WriteLine(a);
}
What you said:
if not (divisible by 3 and divisible by 7) then print
What you wrote:
if not divisible by 3 and not divisible by 7 then print
Not the same thing. Aristotle thought of it first, Augustus De Morgan wrote the laws 158 years ago, apply the not operator to the operands and invert the logical operation:
if not divisible by 3 or not divisible by 7 then print
Which produces:
if (a % 3 != 0 || a % 7 != 0)
Or just write it the way you said it:
if (!(a % 3 == 0 && a % 7 == 0))
Looking at your conditional statement's Truth Table you can see that if
X(NOT multiple of 3) Y(NOT multiple of 7) X && Y
true true 'a' printed as it is not a multiple of either
true false 'a' not printed, it is multiple of 7
false true 'a' not printed, it is multiple of 3
false false 'a' not printed, it is multiple of both
That is why all the multiples of 3 or 7 or 21 are not printed.
What you want: Numbers, that are
not a (multiple of 3 AND 7). And that is
!(a%3==0 && a%7==0) or even further simplified to
!(a%21 == 0) or even
(a%21 != 0)
a % b != 0 means "a is not divisible by b".
If something is not divisible by 3 and not divisible by 7, it's divisible by neither. Thus if it's a multiple of 3 or a multiple of 7, your statement will be false.
It often helps to think of logic in terms of real-world things:
(keep in mind that true and false == false and true or false == true)
The ocean is blue (a is divisible by 3).
The ocean is not yellow (a is not divisible by 7).
What you have:
The ocean is not blue and the ocean is not yellow - this is false (you want this to be true).
What you want:
The ocean is not (blue and yellow) - this is true (the ocean is only blue, not both blue and yellow).
The ocean is not blue or the ocean is not yellow - this is true (the ocean is not yellow).
The equivalent of the last 2 statements would be:
!(a % 3 == 0 && a % 7 == 0)
(a % 3 != 0 || a % 7 != 0)
And you can convert one to the other using De Morgan's laws.
If you don't know how to implement an algorithm, try breaking it down into obviously correct functions that each implement part of the algorithm.
You want to "print all the numbers from 1 to N (user input) except for those that are divisible by 3 and 7 at the same time." Old timers can quickly spit out a correct and efficient implementation using logical operators. As a beginner, you may find it helps to break it down into pieces.
// write out the highest level problem to solve, using functions as
// placeholders for part of the algorithm you don't immediately know
// how to solve
for ($x = 1; $x <= $N; $x++) {
if (is_not_divisible_by_3_and_7($x)) {
print "$x\n";
}
}
// then think about the function placeholders, writing them out using
// (again) function placeholders for things you don't immediately know
// how to do
function is_not_divisible_by_3_and_7($number) {
if (is_divisible_by_3_and_7($number)) {
return false;
} else {
return true;
}
}
// keep repeating this...
function is_divisible_by_3_and_7($number) {
if (is_divisible_by_3($number) && is_divisible_by_7($number)) {
return true;
} else {
return false;
}
}
// until you have the simplest possible functions
function is_divisible_by_3($number) {
if ($number % 3 === 0) {
return true;
} else {
return false;
}
}
function is_divisible_by_7($number) {
if ($number % 7 === 0) {
return true;
} else {
return false;
}
}
This is easier to follow, because each function does one thing and the function name describes exactly that one thing. This also satisfies the first rule of programming: correct code comes first.
You can then start to think of making the code better, where better can mean:
fewer lines of code
less calculations
more comments
Taking this approach with the code above, an obvious improvement is to replace is_divisible_by_3 and is_divisible_by_7 with a generic function:
function is_divisible_by_n($number, $divisor) {
if ($number % $divisor === 0) {
return true;
} else {
return false;
}
}
You can then replace all the big, bulky if x return true else return false with the ternary operator, which gets you to:
function is_divisible_by_n($number, $divisor) {
return ($number % $divisor === 0) ? true : false;
}
function is_divisible_by_3_and_7($number) {
return (is_divisible_by_n($number, 3) && is_divisible_by_n($number, 7)) ? true : false;
}
function is_not_divisible_by_3_and_7($number) {
return (is_divisible_by_3_and_7($number)) ? false : true;
}
Now, notice that is_not_divisible_by_3_and_7 looks exactly like is_divisible_by_3_and_7, except the returns are switched, so you can collapse those into one method:
function is_not_divisible_by_3_and_7($number) {
// look how it changed here ----------------------------------------------VVVVV - VVVV
return (is_divisible_by_n($number, 3) && is_divisible_by_n($number, 7)) ? false : true;
}
Now, rather than using ternary operators you can leverage the fact that comparisons themselves return a value:
function is_divisible_by_n($number, $divisor) {
// this expression returns a "truthy" value: true or false
// vvvvvvvvvvvvvvvvvvvvvvvvvv
return ($number % $divisor === 0);
}
function is_not_divisible_by_3_and_7($number) {
// also returns a truthy value, but inverted because of the !
// vvv
return ! (is_divisible_by_n($number, 3) && is_divisible_by_n($number, 7));
}
Finally, you can just mechanically replace the function calls with their equivalent logical operations:
for ($x = 1; $x <= $N; $x++) {
// all I did below was copy from the function, replace variable names
// v vvvvvvvvvvvvvv vvvvvvvvvvvvvv
if (! (($x % 3 === 0) && ($x % 7 === 0))) {
print "$x\n";
}
}
As bonus points, you can then apply DeMorgan's rule, to distribute the not through the expression:
for ($x = 1; $x <= $N; $x++) {
if ($x % 3 !== 0 || $x % 7 !== 0) {
print "$x\n";
}
}
Additionally, you might observe that two co-prime numbers have common factors if and only if they have common factor N times M, so:
for ($x = 1; $x <= $N; $x++) {
if ($x % (3*7) !== 0) {
print "$x\n";
}
}
You can take this further by using your language's features to compact the expression more:
array_walk(
range(1, $N),
function ($x) {
if ($x % 21 !== 0) print "$x\n";
}
);
And so on. The point is that you start by making your code correct, then you make it better. Sometimes making code correct means thinking long and hard. Sometimes it just means writing it out in very small, very explicit steps.
&& behaves differently to ||
To understand the difference, it may help to do some tests with simpler expressions:
if (true && false)
if (true || false)
So, your problem is with understanding the other operators in your code (!= and %).
It often helps to split conditions into smaller expressions, with explanations:
bool divisbleBy3 = (a % 3 == 0);
bool divisbleBy7 = (a % 7 == 0);
if (divisbleBy3 && divisibleBy7)
{
// do not print
}
else
{
// print
}
Obviously && and || are different.
It states:
if (true && false) = false
if (true || false) = true

How to find multiple in C#

how might I find out, in an if statement, weather the specified int is a multiple of 5? This is what I mean:
if(X [is a multiple of] 5)
{
Console.Writeline("Yes");
}
What would be [is a multiple of]?
Also, why is it that when I do:
if(X = 5)
{
Console.Writeline("sdjfdslf");
}
it shows "X = 5" in red and tells me "Can not implicitly convert type "int" to "bool"? I am using X as an input.
how might I find out, in an if statement, weather the specified int is a multiple of 5?
You want to use the modulo operation (%).
if (X % 5 == 0) {
Console.Writeline("Yes");
}
it shows "X = 5" in red and tells me "Can not implicitly convert type "int" to "bool"? I am using X as an input.
The single equals = is assignment. You want the double equals == to do a check for equality.
if (x % 5 == 0) Console.WriteLine("yes");
C# mod operator
Also use == to return a boolean value for a comparison.
You can use the modulus operator (%), which returns the remainder after division:
if (X % 5 == 0) { Console.Writeline("Yes"); }
You're looking for the modulo operator (%) to determine if an integer is a multiple of another integer, like so:
if (x % 5 == 0)
To answer the second part of your question (if (x = 5)), a single equals sign is an assignment operator in C#. You should be using the double equals sign instead, which is the comparison operator, like so: if (x == 5).
= is the assignment operator, while == is used for comparison.
So when your write if (X = 5), you're assigning 5 to X and treat that as a boolean expression.
Interestingly, assigning a value to a variable also returns the value itself.
y = x = 5
assigns 5 to x and assigns the result of (x = 5), which is also 5, to y.

Categories

Resources