-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram_prueba.cs
More file actions
38 lines (35 loc) · 1016 Bytes
/
Program_prueba.cs
File metadata and controls
38 lines (35 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PruebaInicial
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hola Mundo!");
Console.ReadKey();
String nombre = "";
if(nombre == ""){
Console.WriteLine("Ingrese su nombre:");
}else{
//No se ingresa nada
Console.WriteLine("Hola Admin!");
}
Int numero = 0x75d78d3ff;
Int numero2 = 0X345564gg;
Int numero3 = 0XABCDE5;
int numero4 = "748400";
int numero5 = 12.12.12E+2;
int numero6 = 7484.899378;
int numero7 = 12.E+34;
int numero8 = 12.12e+5;
/*Esta es la seccion de comentario extendido
Linea 2
Linea 3
*/
}
}
}