Advertisement
Fedekiller999

Untitled

Dec 5th, 2020
907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1.  
  2. using System;
  3.  
  4. namespace ConsoleApp2
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int num = 1;
  11.  
  12.             // Si num es 1
  13.             if(num == 1) {
  14.                 // Entonces se ejecuta este bloque de código
  15.                 Console.WriteLine("Num es 1.");
  16.             }
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement