Skip to content

Instantly share code, notes, and snippets.

View eliizquierdo's full-sized avatar

Elizabeth Izquierdo eliizquierdo

  • CETP - Universidad del Trabajo del Uruguay
  • Uruguay
View GitHub Profile


Que estamos aprendiendo

  • Usar variables de tipo char
  • Concatenar


Que estamos aprendiendo

  • Defjnir y usar variables de tipo int
  • Realizar cálculos


Que estamos aprendiendo

Mostrar texto y valores numéricos juntos

    Los valores de texto y números se pueden generar juntos


Que estamos aprendiendo

Mostrar texto y valores numéricos juntos

    Los valores de texto y números se pueden generar juntos
create database liceo;
use liceo;
-- Creamos la tabla Alumno
create table Alumno(
Id_Alum int(4),
Nombre varchar(20),
Edad_Alum int(3),
primary key(Id_Alum)
);
@eliizquierdo
eliizquierdo / Online code utilities.md
Created December 15, 2020 20:16 — forked from fghber/Online code utilities.md
Online code utilities

Web IDEs

ideone Ideone is an online compiler and debugging tool which allows youto compile source code and execute it online in more than 60 programming languages and share links to the code.
repl.it Like ideaone, can also install missing Python packages.
Onlilne GDB Online compiler and debugger forC, C++, Python, Java, PHP, Ruby, Perl, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog, and more.
Coding Ground Advanced IDEs for C/C++, C#, GO, Java, PHP, Perl, Python, Octave/MATLOAB, R, Ruby, Scala, and compiler/interpreter for many other languages and frameworks.
JDOODLE very similar to ideone but a somewhat different set of languagse/compilers.

Dedicated: