This file contains 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 <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
char c_LineaD = 'D'; | |
char c_LineaB = 'B'; | |
char c_LineaC = 'C'; |
This file contains 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
# -*- coding: utf-8 -*- | |
import datetime | |
from django import template | |
from dateutil import relativedelta | |
register = template.Library() | |
@register.simple_tag() | |
def diferencia_de_tiempo(cdate): | |
today = datetime.date.today() | |
#cdate = datetime.datetime.strptime(cdate,'%Y-%m-%d') |
This file contains 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 <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
int n_Dias; | |
char s_Especialidad[50]; | |
This file contains 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 <cstdlib> | |
#include <iostream> | |
#include <iomanip> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
int ancho = 15; | |
This file contains 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 <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
char s_Str[150] = "Olmedo, l@a con@cha de @tu madre"; | |
int n_Len = strlen(s_Str); | |
int arrobas = 0; |
This file contains 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 <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
float de; | |
float a; | |
int opcionElegidaDe; |
This file contains 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 <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
char s_Str[150] = "Agustin Houlgrave@[email protected]@River!Alberto Olmedo@[email protected]@Olmedo FC!Carlos Perez@[email protected]@Banfield"; | |
int n_Len = strlen(s_Str); | |
for (int i = 0; i < n_Len; i++) { |
This file contains 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
Algoritmo: "procesarNotas" | |
var | |
float: | |
promedio_10, promedio_20, promedio_30, | |
nmax_10, nmax_20, nmax_30, | |
promedio_general | |
int: | |
notas_10, notas_20, notas_30, | |
legajo_max_10, legajo_max_20, legajo_max_30, |
This file contains 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 <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
float costoEstacionGlew = 0.8; | |
float costoEstacionTemperley = 0.8; | |
float costoEstacionRemediosDeEscalada = 1.2; |
This file contains 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 <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(int argc, char *argv[]) | |
{ | |
int opcionElegida; | |
char nombreDelPlaneta[] = "Olmedo"; | |
OlderNewer