0
how to make the addition of two digits in if statement c#?
plz help me in this code
2 Respostas
0
if ((a-b) || (b-a)) ... something like that, you need to specify what you need to do with some more detail pls as there are a few approaches you can use.
0
Let me give you a simple syntax
int x =5;
int y = 10;
if((x + y) >= 15)
{
}