This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE Registros; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE [Registros].[dbo].[usuarios]( | |
[Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY, | |
[Nombre] [varchar](30) NULL, | |
[Edad] [int] NULL, | |
[Correo] [varchar](45) NULL, | |
[Nacionalidad] [varchar](50) NULL | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
_____ _ _ _ | |
/ ____| | (_) | | | |
| | ___ __| |_ __ _ ___ _ __ ___ ___ | |_ | |
| | / _ \ / _` | |/ _` |/ _ \ | '__/ _ \ / _ \| __| | |
| |___| (_) | (_| | | (_| | (_) | | | | (_) | (_) | |_ | |
\_____\___/ \__,_|_|\__, |\___/ |_| \___/ \___/ \__| | |
__/ | | |
|___/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
phpinfo(); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class modulo { | |
public static void main(String args[]) { | |
Scanner entrada = new Scanner(System.in); | |
System.out.println("Introduza el primer número"); | |
int numero1 = entrada.nextInt(); | |
System.out.println("Introduza el segundo número"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class division { | |
public static void main(String args[]) { | |
Scanner entrada = new Scanner(System.in); | |
System.out.println("Introduza el primer número"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class multiplicacion { | |
public static void main(String args[]) { | |
Scanner entrada = new Scanner(System.in); | |
System.out.println("Introduza el primer número"); | |
int numero1 = entrada.nextInt(); | |
System.out.println("Introduza el segundo número"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class resta { | |
public static void main(String args[]) { | |
Scanner entrada = new Scanner(System.in); | |
System.out.println("Introduza el primer número"); | |
int numero1 = entrada.nextInt(); | |
System.out.println("Introduza el segundo número"); | |
int numero2 = entrada.nextInt(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class suma { | |
public static void main(String args[]) { | |
Scanner entrada = new Scanner(System.in); | |
System.out.println("Introduza el primer número"); | |
int numero1 = entrada.nextInt(); | |
System.out.println("Introduza el segundo número"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class OperacionesAritmeticas { | |
public static void main(String[] args) { | |
Scanner entrada = new Scanner(System.in); | |
System.out.println("Introduza el primer número"); | |
int numero1 = entrada.nextInt(); |