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 | |
$n = 2048; | |
$A = [[]]; | |
$B = [[]]; | |
$C = [[]]; | |
for ($i=0; $i < $n ; $i++) { | |
for ($j=0; $j < $n ; $j++){ |
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
// Init position | |
var mousePos = { x: 0.5, y: 0.5 }; | |
var phase = 0; | |
// Scroll to figure | |
document.addEventListener("mousemove", function (event) { | |
mousePos = { | |
x: event.clientX / window.innerWidth, | |
y: event.clientY / window.innerHeight, | |
}; |
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 "Cliente.h" | |
Cliente::Cliente(int valorNumeroCuenta, const string &valorApellido, const string &valorPrimerNombre, double valorSaldo) | |
{ | |
establecerNumeroCuenta(valorNumeroCuenta); | |
establecerApellido(valorApellido); | |
establecerPrimerNombre(valorPrimerNombre); | |
establecerSaldo(valorSaldo); | |
}//fin del constructor |
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 "Cliente.h" | |
Cliente::Cliente(int valorNumeroCuenta, const string &valorApellido, const string &valorPrimerNombre, double valorSaldo) | |
{ | |
establecerNumeroCuenta(valorNumeroCuenta); | |
establecerApellido(valorApellido); | |
establecerPrimerNombre(valorPrimerNombre); | |
establecerSaldo(valorSaldo); | |
}//fin del constructor |
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 "Cliente.h" | |
Cliente::Cliente(int valorNumeroCuenta, const string &valorApellido, const string &valorPrimerNombre, double valorSaldo) | |
{ | |
establecerNumeroCuenta(valorNumeroCuenta); | |
establecerApellido(valorApellido); | |
establecerPrimerNombre(valorPrimerNombre); | |
establecerSaldo(valorSaldo); | |
}//fin del constructor |
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 "Cliente.h" | |
Cliente::Cliente(int valorNumeroCuenta, const string &valorApellido, const string &valorPrimerNombre, double valorSaldo) | |
{ | |
establecerNumeroCuenta(valorNumeroCuenta); | |
establecerApellido(valorApellido); | |
establecerPrimerNombre(valorPrimerNombre); | |
establecerSaldo(valorSaldo); | |
}//fin del constructor |
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 "Cliente.h" | |
Cliente::Cliente(int valorNumeroCuenta, const string &valorApellido, const string &valorPrimerNombre, double valorSaldo) | |
{ | |
establecerNumeroCuenta(valorNumeroCuenta); | |
establecerApellido(valorApellido); | |
establecerPrimerNombre(valorPrimerNombre); | |
establecerSaldo(valorSaldo); | |
}//fin del constructor |
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<conio.h> | |
#include<iostream> | |
using namespace std; | |
main() | |
{ | |
const double a = 3.141592654; | |
double al, r, area, at, vol; | |
cout<<"Ingresa la altura del cilindro\t\t"; | |
cin>>al; |
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: Mailvelope v1.3.6 | |
Comment: https://www.mailvelope.com | |
xsFNBFciLQ8BEAC9gASu4AaK6iSMdZ2bgcuNRqIzFTL06U334Y0l6ibGKfKx | |
N9HD6hkfZQ9wQRLfGnV2+ZiQXWKFC33TN9uRqzInDzD29HgUHz7K1T6/o+QZ | |
d/vF4d9fgY01w07Nn7//Hs5gsLD47IuAYv6Ud8dReBjvWKY31EkaqSwIkn3b | |
lhu/T6T50hbqi8RExdNKdkuYaWy7fzfUkhI9VN9rCGgnB9Csz9X2G7/ONpEt | |
EGZ9puHXb8etoHHK4oPNVmO553cfXK9/lchxt6BFxDc5XqK/f1KDvTO48ZTt | |
CMZbmXB6awcePku/qoMQNApheIBzYoRC8Oi/RKnyFx6yTukZcW/+i0OKR8uO |
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 () | |
{ | |
int Matriz[5][5]={{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}}; |
NewerOlder