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
<div class="youtube-player" data-id="VIDEO-ID"></div> |
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
<style> | |
.youtube-player { | |
position: relative; | |
padding-bottom: 56.25%; | |
height: 0; | |
overflow: hidden; | |
max-width: 100%; | |
background: #000; | |
margin: 0px; | |
} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
int main() | |
{ | |
float promedio = 0; | |
float costo = 0; | |
float descuento = 0.10; | |
float impuesto = 0.16; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
int main() | |
{ | |
int horas = 0; | |
float costo = 2; | |
float descuento = 0.20; | |
float montoapagar = 0; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> //galeria para utilizar floor, comando de redondeo | |
int main() | |
{ | |
int horas = 0; | |
float costo = 0; | |
float descuento = 0; | |
float montoapagar = 0; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> //galeria para utilizar floor, comando de redondeo | |
int main() | |
{ | |
int horas = 0; | |
float costo = 1.5; | |
float descuento = 0; | |
float montoapagar = 0; |
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
#include <stdio.h> | |
#include <conio.h> | |
int j; //marcador de posicion del arreglo | |
int arreglo[10]={1,2,3,4,5,6,7,8,9,10}; //arreglo dado por el programador | |
int acubo[10]; //arreglo con los cubos de cada elemento | |
void cubo(); //donde se calculara el cubo de cada elemento del arreglo | |
void imprimir(); //para mostrar el resultado | |
//menu principal |
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
#include <stdio.h> | |
#include <math.h> | |
int main() | |
{ | |
// declaramos las variables a utilizar | |
float x; //numero solicitado al usuario | |
float cubo; //variable para calcular el cubo del numero dado | |
float potencia; //variable para calcular la potencia del numero dado | |
float inverso; //variable para calcular el numero inverso |
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
#include <stdio.h> | |
int medio(int,int); //declaramos la funcion que calcula el punto medio | |
int main() | |
{ | |
// declaramos las variables a utilizar para el punto a y para el punto b | |
int a; | |
int b; |
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
#include <stdio.h> | |
int main() | |
{ | |
enum mes{enero=1,febrero=2,marzo=3,abril=4,mayo=5,}; | |
enum mes elmes; | |
NewerOlder