Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
if else y var
//Microsoft (R) Visual C# Compiler version 3.4.0-beta4-19562-05 (ff930dec) //Copyright (C) Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int uno = 1; int dos = 2; var data = uno != dos;//guardo l comparacion dentro de data, devolviendo true o false if(false)//uso booleanos para entrar al if o anular el if { Console.WriteLine("no entra al if porque es false"); } else if (true)//si es true entra { Console.WriteLine("entra al if con un true"); } //comparo los 2 valores if(uno != dos)//tambien puedo usar &&, || como en C { Console.WriteLine("{0} es diferente de {1}", uno, dos); } if(data)//si data (1!=2) = true { Console.WriteLine("data es 1!=2 {0}", data); } uno = 1; dos = 1;// reasigno alores a mis variables data = uno != dos;// hago de nuevo la comparacion con los valores actualizados if(true)//pongo true para que entre en el if { Console.WriteLine("data es 1!=1 {0}", data);//data = false } } } }
run
|
edit
|
history
|
help
0
Linq
Prueba
sdfgrthyjuytgr
GEFCSADX
static
Write a program to filter distinct items from the array
Primes
Shift Example
Remove xmlns and select signle node
Task 1_4