Texto sin alinear
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
| // Practica para refrescar la sintaxis de C++ | |
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| //ESTRUCTURA CONDICIONAL MULTIPLE | |
| char variable; |
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
| // Practica para refrescar la sintaxis de C++ | |
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| /* ESTRUCTURA CONDICIONAL SIMPLE | |
| if -> si | |
| else -> sino */ |
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
| // Practica para refrescar la sintaxis de C++ | |
| #include <iostream> | |
| #include <cmath> | |
| using namespace std; | |
| int main() | |
| { | |
| // Calcula la distancia entre dos puntos en un plano XY |
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 <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| // Cambia los grados de Celsius a Fahrenheit y a Kelvin | |
| float celsius,fahrenheit,kelvin; |
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
| // Practica para refrescar la sintaxis de C++ | |
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| // Promedio de las notas | |
| float nota1,nota2,nota3,promedioFinal; |
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
| // Practica para refrescar la sintaxis de C++ | |
| #include <iostream> | |
| #include <cmath> | |
| using namespace std; | |
| int main() | |
| { | |
| // Hallar el volumen de una esfera |
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
| // Practica para refrescar la sintaxis de C++ | |
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| // Hallar el area de un triangulo | |
| float base,altura,area; |
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
| // ┌∩┐(◣_◢)┌∩┐ | |
| // \\ | |
| // AutoPrediccion.cs (15/03/2017) \\ | |
| // Autor: Antonio Mateo (Moon Pincho) \\ | |
| // Descripcion: Prediccion mediante un patron \\ | |
| // Fecha Mod: 15/03/2017 \\ | |
| // Ultima Mod: Version Inicial \\ | |
| //******************************************************************************\\ | |
| #region Librerias |
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
| // ┌∩┐(◣_◢)┌∩┐ | |
| // \\ | |
| // MLoader.cs (22/02/2017) \\ | |
| // Autor: Antonio Mateo (Moon Pincho) \\ | |
| // Descripcion: Loader de escena con un fade en UGUI y NGUI \\ | |
| // Fecha Mod: 22/02/2017 \\ | |
| // Ultima Mod: Version inicial \\ | |
| //******************************************************************************\\ | |
| #region Librerias |