HOME | DD | Gallery | Favourites | RSS
| KOODER
# Statistics
Favourites: 384; Deviations: 49; Watchers: 10
Watching: 52; Pageviews: 6239; Comments Made: 91; Friends: 52
# Interests
Favorite visual artist: SUSAN COFFEY, HECTOR MEJIA, BENJAMIN SIDA, AIDEE, ETCFavorite movies: En busca de la Felicidad, El diario de Noa, Nunca Te Vallas Sin Decir Te Quiero
Favorite TV shows: 31 Minutos, Dificil de Creer, History, etc
Favorite bands / musical artists: Pink Floyd, Alex Syntek, The Beatles, Billy Joel, Beethoven, Mecano, Five For Fighting, Bob Marley, etc.
Favorite books: La Historia Interminable, Que importa?, Que es??, shhhhhh
Favorite writers: NENA, DAN ELI
Favorite games: Megaman, Crash, Flipside, Mutiny, Preguntas, Mario Party, etc.
Favorite gaming platform: Nitrome
Tools of the Trade: Mente, Lapiz, Plumas, Estilografo, Borrador, etc.
Other Interests: Me encanta conoser personas agradables e interesantes con las cuales pueda tener muchas platicas exitantes y muy interesantes.
# Comments
Comments: 46
SR-Benja [2012-05-09 06:16:03 +0000 UTC]
Subi la mayoría de lo que he hecho desde hace uno 8 o 10 meses pa´ que los veas, echale ganas con lo del comic, así como tu sabes hacerlo y quedara genial, me encantaría verlo, cuando tengas algo del comic hecho me avisas para ir a tu casa a verlo
👍: 0 ⏩: 0
KOODER [2012-03-01 17:17:14 +0000 UTC]
#include "stdafx.h"
#include "iostream"
#include "conio.h"
using namespace std;
class complejo
{
public:
int r,i;
complejo();
complejo suma(complejo a,complejo b);
void setvalor(int r, int i);
};
int _tmain(int argc, _TCHAR* argv[])
{
complejo a,b,c;
//a.setvalor(1,5);
//b.setvalor(9,2);
c=c.suma(a,b);
cout<
return 0;
}
complejo complejo::suma(complejo a,complejo b)
{
complejo res;
res.r=a.r+b.r;
res.i=a.i+b.i;
return res;
}
void complejo::setvalor(int r, int i)
{
this->r=r;
this->i=i;
}
complejo::complejo()
{
r=0;
i=0;
}
👍: 0 ⏩: 0
KOODER [2012-02-29 18:10:04 +0000 UTC]
#include "stdafx.h"
#include "stdlib.h"
#include "iostream"
#include "time.h"
#include "conio.h"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int bdd[1000],num,min,max,cont;
srand(time(NULL));
cout<<"Cuantos Numeros debo Generar? ";
cin>>num;
cout<<"De: ";
cin>>min;
cout<<"A: ";
cin>>max;
for(cont=0;cont
bdd[cont]=min+rand()%(max-min);
cout<
getch();
return 0;
}
👍: 0 ⏩: 0
KOODER [2012-02-29 16:50:17 +0000 UTC]
#include "stdafx.h" 👍: 0 ⏩: 0
#include
#include
#include
#include "conio.h"
using namespace std;
class Algo
{
int m,n;
public:
void v(int m, int n);
void d();
void b();
void i();
int a(int h);
};
void gotoxy(int x, int y);
int _tmain(int argc, _TCHAR* argv[])
{
int z;
Algo x[5];
x[0].v(1,6);
x[1].v(-10,12);
x[2].v(-12,-15);
x[3].v(-60,17);
x[4].v(-18,-17);
while(!_kbhit())
{
for(z=0;z<5;z++)
x[z].d();
Sleep(100);
for(z=0;z<5;z++)
{
x[z].b();
x[z].i();
}
}
return 0;
}
void Algo::v(int m, int n)
{
this->m=m;
this->n=n;
}
void Algo::d()
{
gotoxy(a(m),a(n));
cout<<"0";
if(m==-1||m==79) m*=-1;
if(n==-1||n==24) n*=-1;
}
void Algo::b()
{
gotoxy(a(m),a(n));
cout<<" ";
}
void Algo::i()
{
m++;
n++;
}
int Algo :: a(int h)
{
return (h<0?-h:h);
}
void gotoxy(int x, int y)
{
COORD p={x,y};
HANDLE h=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(h,p);
}
KOODER [2012-02-23 18:11:51 +0000 UTC]
#include "stdafx.h"
#include "iostream"
#include "conio.h"
#include "windows.h"
using namespace std;
class conversor
{
public:
void celafar(float in);
void faracel(float in);
};
void gotoxy(int x, int y);
int _tmain(int argc, _TCHAR* argv[])
{
int opc;
float in;
conversor worker;
gotoxy(2,2);
cout<<"Elije una Opcion"<
cout<<"[1]Convertir °C a °F"<
cout<<"[2]Convertir °F a °C"<
cout<<"[3]Iprimir 'Cotorro'"<
cin>>opc;
switch(opc)
{
case 1:
gotoxy(7,10);
cout<<"°C= ";
cin>>in;
worker.celafar(in);
break;
case 2:
gotoxy(7,10);
cout<<"°F= ";
cin>>in;
worker.faracel(in);
break;
case 3:
gotoxy(35,12);
cout<<"C O T O R R O";
break;
default:
gotoxy(35,12);
cout<<"O P C I O N I N C O R R E C T A";
}
getch();
return 0;
}
void gotoxy(int x, int y)
{
COORD p={x,y};
HANDLE h=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(h,p);
}
void conversor::celafar(float in)
{
gotoxy(15,10);
if(in==-40)
cout<<"°F= -40";
else
cout<<"°F= "<<(in*9/5)+32;
}
void conversor::faracel(float in)
{
gotoxy(15,10);
if(in==-40)
cout<<"°C= -40";
else
cout<<"°C="<<(in-32)*(9/5);
}
//Celsius a Fahrenheit (°C × 9/5) + 32 = °F
//Fahrenheit a Celsius (°F - 32) x 5/9 = °C
👍: 0 ⏩: 0
KOODER [2012-02-23 17:03:25 +0000 UTC]
#include "stdafx.h"
#include "iostream"
#include "conio.h"
using namespace std;
class chanfle
{
int z,a;
float b;
public:
int tipo;
void imprime();
void par();
};
void jok();
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"Hola Mundo"<
harold.tipo=9;
harold.imprime();
harold.par();
getch();
return 0;
}
void jok()
{
chanfle bambu;
bambu.tipo=45;
}
void chanfle::imprime()
{
for(z=0;z
void chanfle:ar()
{
if(tipo%2==0)
cout<<"Tipo es Par";
else
cout<<"Tipo es Inpar";
}
👍: 0 ⏩: 0
KOODER [2012-02-22 04:16:55 +0000 UTC]
#include "stdafx.h" 👍: 0 ⏩: 0
#include "stdio.h"
#include "conio.h"
#include
/*#include "iostream"
using namespace std;*/
void gotoxy(int x, int y);
void crede();
void divicion();
void matriz();
int _tmain(int argc, _TCHAR* argv[])
{
matriz();
getch();
return 0;
}
void gotoxy(int x, int y)
{
COORD p={x,y};
HANDLE h=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(h,p);
}
void crede()
{
int edad;
char nombre[10];
gotoxy(20,3);
printf("CENTRO DE ENZEÑANSAS MIGUE");
gotoxy(5,12);
printf("Nombre:");
gotoxy(10,14);
scanf("%s",&nombre);
gotoxy(50,12);
printf("Edad:");
gotoxy(55,14);
scanf("%d",&edad);
}
void divicion()
{
char operacion[8];
printf("Escribre la primera divicion\n");
scanf("%s",operacion);
gotoxy(2,4);
printf("%c",operacion[0]);
gotoxy(6,4);
printf("%c",operacion[4]);
gotoxy(1,5);
printf("---%c---",operacion[3]);
gotoxy(2,6);
printf("%c",operacion[2]);
gotoxy(6,6);
printf("%c",operacion[6]);
}
void matriz()
{
int x,y,xa,ya,a;
printf("Dame las dimenciones de la matriz\nX: ");
scanf("%d",&x);
printf("Y: ");
scanf("%d",&y);
int matriz[100][100];
for(ya=0;ya<=y-1;ya++)
{
gotoxy(4,ya+5);
for(xa=0;xa<=x-1;xa++)
{
if(xa==0)
{
gotoxy(xa+4,ya+5);
scanf("%d",&matriz[xa][ya]);
}
else
{
a=xa*2
gotoxy(a+4,ya+5);
scanf("%d",&matriz[xa][ya]);
}
}
}
KOODER [2012-02-16 18:00:36 +0000 UTC]
// Joy joy joy Pirata es lo de hoy.cpp: define el punto de entrada de la aplicación de consola. 👍: 0 ⏩: 0
//
#include "stdafx.h"
#include "stdio.h"
#include "conio.h"
#include
void gotoxy(int x, int y);
void crede();
void divicion();
int _tmain(int argc, _TCHAR* argv[])
{
crede();
getch();
return 0;
}
void gotoxy(int x, int y)
{
COORD p={x,y};
HANDLE h=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(h,p);
}
void crede()
{
int edad;
char nombre[10];
gotoxy(20,3);
printf("CENTRO DE ENZEÑANSAS MIGUE");
gotoxy(5,12);
printf("Nombre:");
gotoxy(10,14);
scanf("%s",&nombre);
gotoxy(50,12);
printf("Edad:");
gotoxy(55,14);
scanf("%d",&edad);
}
KOODER [2011-09-28 16:10:58 +0000 UTC]
// Mi Mama le Gano a Batman (2).cpp: define el punto de entrada de la aplicación de consola.
//
#include "stdafx.h"
#include "stdio.h"
#include "conio.h"
void captura(int *num);
int suma(int a, int b);
int potencia(int num);
int _tmain(int argc, _TCHAR* argv[])
{
int a,b,x,y;
captura(&a);
captura(&b);
printf("La suma de %d y %d es %d\n",a,b,suma(a,b));
xotencia(a);
yotencia(x);
printf("El cuadrado de %d es %d\nEl cuadrado de %d es %d\nLa suma de los dos cuadrados es %d",a,x,x,y,suma(x,y));
getch();
return 0;
}
void captura (int *num)
{
printf("Escribe un valor: ");
scanf("%d",num);
}
int suma (int a, int b)
{
return a+b;
}
int potencia(int num)
{
return num*num;
}
👍: 0 ⏩: 0
KOODER [2011-09-22 13:52:17 +0000 UTC]
// PORQUE ESTOY CIEGO(3).cpp: define el punto de entrada de la aplicación de consola.
//
#include "stdafx.h"
#include "stdio.h"
#include "conio.h"
void pedir_valor(int *x);
int sumar_restar_valores(int x, int y, int *z);
int _tmain(int argc, _TCHAR* argv[])
{
int x,y,z=1;
pedir_valor(&x);
pedir_valor(&y);
printf("x vale %d e y vale %d\n",x,y);
printf("x-y=%d\nLa suma vale: %d",sumar_restar_valores(x,y,&z),z);
getch ();
return 0;
}
void pedir_valor(int *x)
{
printf("Introduce un valor: ");
scanf("%d",x);
}
int sumar_restar_valores( int x, int y, int *z)
{
*z=*z+x+y;
return x-y;
}
👍: 0 ⏩: 0
KOODER [2011-09-21 16:25:40 +0000 UTC]
// CUANDO MIGUE ATACA (2).cpp: define el punto de entrada de la aplicación de consola. 👍: 0 ⏩: 0
//
#include "stdafx.h"
#include "stdio.h"
#include
void pasoporvalor(int a,int b);
void pasoporreferencia(int *a,int *b);
int _tmain(int argc, _TCHAR* argv[])
{
int a=5,b=6,resultado;
pasoporvalor(a,b);
printf("el valor de a es %d y de b %d\n",a,b);
pasoporreferencia(&a,&b);
printf("el valor de a es %d y el de b %d\n",a,b);
getch();
return 0;
}
void pasoporvalor(int a,int b)
{
a=1;
b=2;
}
void pasoporreferencia(int *a,int *b)
{
int j;
*a=8;
*b=9;
j=*b;
*b=*a;
*a=j;
}
KOODER [2011-09-14 16:22:16 +0000 UTC]
// GOTZILA ES MI NOVIO(1).cpp: define el punto de entrada de la aplicación de consola.
//
#include "stdafx.h"
//#include "stdio.h"
#include "conio.h"
struct jugadores
{
char jugador[40], tipo;
int edad, camiseta;
}
void equipo()
{
struct jugadores vector[1];
int cont;
for(cont=0;cont<=10;cont++)
{
printf("Registro de Jugadores\n\nNombre: ");
scanf("%s",&vector[cont].jugador);
printf("Edad: ");
scanf("%d",&vector[cont].edad);
printf("Define tu posicion");
scanf("%s",&vector[cont].tipo);
vector[cont].camiseta=cont+1;
printf("\n");
}
for(cont=0;cont<=10;cont++)
{
printf("DATOS\n");
printf("Jugador: %s\n",vector[cont].jugador);
printf("Edad: %d\n",vector[cont].edad);
printf("Posicion: %s\n",vector[cont].tipo);
printf("Numero de Camiseta: %d\n\n\n",vector[cont].camiseta);
}
}
int _tmain(int argc, _TCHAR* argv[])
{
equipo();
getch();
return 0;
}
👍: 0 ⏩: 0
SR-Benja [2011-06-05 06:46:48 +0000 UTC]
YA subi lo que he he hecho los ultimos meses!
y esta genial eso de los cuadernos solo que supongo que para que esté todo va a llevar un bn tiempo verdad? jeje vas bien amigo, hasta luego!
👍: 0 ⏩: 0
KOODER [2011-05-31 13:29:48 +0000 UTC]
#include 👍: 0 ⏩: 0
#include
struct person
{
char nom[40];
int edad;
} v1,v2,data[4];
int main(int argc, char *argv[])
{
int x,p;
do{
printf("Elije una opcion\n[1]Leyendo Gente\n[2]LLenando con matrices\n[3]Salir\n");
scanf("%i",&p);
switch (p)
{
case 1: printf("Dame los nombres y las edades de Dos Personas\n");
scanf("%s",&v1.nom);
scanf("%i",&v1.edad);
scanf("%s",&v2.nom);
scanf("%i",&v2.edad);
printf("Impresion de datos:\n");
printf("Nombre: %s\nEdad: %i\n",v1.nom,v1.edad);
printf("Nombre: %s\nEdad: %i\n",v2.nom,v2.edad);
break;
case 2:
printf("Llenemos Los Datos\nSi!!!\n");
for(x=0;x<4;x++)
{
scanf("%s",&data[x].nom);
scanf("%i",&data[x].edad);
}
for(x=0;x<4;x++)
{
printf("Nombre: %s\nEdad: %i\n",&data[x].nom,&data[x].edad);
}
break;
}
}while(p!=3);
system("PAUSE");
return 0;
}
KOODER [2011-05-31 13:29:46 +0000 UTC]
#include 👍: 0 ⏩: 0
#include
struct person
{
char nom[40];
int edad;
} v1,v2,data[4];
int main(int argc, char *argv[])
{
int x,p;
do{
printf("Elije una opcion\n[1]Leyendo Gente\n[2]LLenando con matrices\n[3]Salir\n");
scanf("%i",&p);
switch (p)
{
case 1: printf("Dame los nombres y las edades de Dos Personas\n");
scanf("%s",&v1.nom);
scanf("%i",&v1.edad);
scanf("%s",&v2.nom);
scanf("%i",&v2.edad);
printf("Impresion de datos:\n");
printf("Nombre: %s\nEdad: %i\n",v1.nom,v1.edad);
printf("Nombre: %s\nEdad: %i\n",v2.nom,v2.edad);
break;
case 2:
printf("Llenemos Los Datos\nSi!!!\n");
for(x=0;x<4;x++)
{
scanf("%s",&data[x].nom);
scanf("%i",&data[x].edad);
}
for(x=0;x<4;x++)
{
printf("Nombre: %s\nEdad: %i\n",&data[x].nom,&data[x].edad);
}
break;
}
}while(p!=3);
system("PAUSE");
return 0;
}
KOODER [2011-05-18 13:18:05 +0000 UTC]
int vec[10], cont[3];
//Cont 0 contador
//Cont 1 Num Mayor
//Cont 2 Switch
do{
printf("\nElije una opcion\n[1]Numero Mayor\n[2]Inversa\n[3]Salir\n");
scanf("%i",&cont[2]);
switch(cont[2])
{
case 1: printf("Dame 10 Numeros");
cont[0]=0;
while(cont[0]<=9)
{
scanf("%i",&vec[cont[0]]);
cont[0]++;
}
cont[0]=0;
cont[1]=vec[0];
while(cont[0]<=9)
{
if(vec[cont[0]]>cont[1])
cont[1]=vec[cont[0]];
cont[0]++;
}
printf("El numero mas grande que digitaste fue %i\n",cont[1]);
break;
case 2: printf("Digita 10 Numeros\n");
cont[0]=0;
while(cont[0]<=9)
{
scanf("%i",&vec[cont[0]]);
cont[0]++;
}
cont[0]=9;
while(cont[0]>=0)
{
printf(" %i ",vec[cont[0]]);
cont[0]--;
}
break;
}
}while(cont[2]!=3);
system("PAUSE");
return 0;
}
👍: 0 ⏩: 0
KOODER [2011-05-11 13:39:23 +0000 UTC]
#include 👍: 0 ⏩: 0
#include
int main(int argc, char *argv[])
{
float peso[5], prom=0;
int a[3],b[3],c[3],i;
char p;
printf("Elije una opcion\n[A]Peso\n[B]Sumatorias");
scanf("%c",&p);
switch(p)
{
case'a':
case'A': for (i=0;i<5;i++)
{
printf("\n Dame un peso: ");
scanf("%f",&peso[i]);
promrom+peso[i];
}
promrom/5;
printf("\nEl promedio de pesos es: %f",prom);
break;
case'b':
case'B': for(i=0;i<3;i++)
{
printf("\n Dame un elemento de A: ");
scanf("%d",&a[i]);
printf("\n Dame un elemento de B: ");
scanf("%d",&b[i]);
c[i]=a[i]+b[i];
}
printf("\n El arreglo c esta compuesto por los siguientes elementos:");
for(i=0;i<3;i++)
{
printf("%d ",c[i]);
}
break;
}
system("PAUSE");
return 0;
}
KOODER [2011-05-10 13:36:32 +0000 UTC]
#include 👍: 0 ⏩: 0
#include
#include
int main(int argc, char *argv[])
{
int jojo, cont=0,x,chi;
float vents, sum, a;
char cadi[11],hey;
do{
printf("Bienvenido a mi examen\nPor favor elija una opcion\n[1]Ventas\n[2]Cadenas\n[3]salir\n");
scanf("%i",&jojo);
switch(jojo)
{
case 1: printf("Ventas\nPorfavor ingrese sus ventas\n");
x=1;
while(vents>0)
{
printf("Dame tu venta %i ",x);
scanf("%f",&vents);
if(vents>0)
{
sum=sum+vents;
cont++;
x++;
}
}
a=sum/cont;
printf("Tus ventas asienden a %f pesos m.n. con %i ventas realizadas\n",a,cont);
break;
case 2: printf("Escribe una oracion\n");
fflush(stdin);
gets(cadi);
x=0;
for(;cadi[x]!='\x0'
{
fflush(stdin);
hey=cadi[x];
printf("%c",hey);
x=x+2;
}
break;
}
printf("\nEscirbe '3' para salir de la aplicacion");
scanf("%i",&chi);
}while(chi!=3);
system("PAUSE");
return 0;
}
SR-Benja [2011-04-03 06:46:59 +0000 UTC]
Hey migue!!! aún tienes los cuadernos de dibujos de la secu??
👍: 0 ⏩: 1
SR-Benja [2011-03-31 01:23:11 +0000 UTC]
hey migue ya subi dos pinturas más, TU sube mas dibujos!!! n.n
👍: 0 ⏩: 0
SR-Benja [2010-12-01 04:21:02 +0000 UTC]
No importa yo tambien deje de dibujar por un tiempo hace como unos tres meces volvi a hacerlo y lo primero que hice fue "Como tu", no te desalientes por dejarlo momentaneamente... Pero siempre vuelve!!!
👍: 0 ⏩: 0
Kaf-ELICC-TeamLeader [2010-07-02 17:35:59 +0000 UTC]
Cielos, gracias por el Watcheo,
enserio lo aprecio xD
👍: 0 ⏩: 1
KOODER In reply to Kaf-ELICC-TeamLeader [2010-07-05 18:59:11 +0000 UTC]
APRESIO MUCHO TUS DIBUJOS!
ME ENCANTA LA CREATIVIDAD QUE TIENES!
👍: 0 ⏩: 1
Kaf-ELICC-TeamLeader In reply to KOODER [2010-07-05 22:59:07 +0000 UTC]
Oh vaya, no es algo que me digan...
basicamente nunca xD
gracias otravez!
👍: 0 ⏩: 0
BetweenAsleepAndWake [2010-01-30 22:10:49 +0000 UTC]
Thank you for faving my portrait of Liv Tyler.
👍: 0 ⏩: 0
SR-Benja [2009-09-26 17:59:04 +0000 UTC]
tu te quedaste con los cuadernos de dibujo en los que dibujabamos poncho tu y ya no?
si aun los tienes sube algo de ahi
👍: 0 ⏩: 1
KOODER In reply to SR-Benja [2009-09-27 02:48:12 +0000 UTC]
MMM LUEGO SUBIRE UN POCO
ALGO QUE NO ESTE TAN PERVERTIDO!!!!!
JE JE AUNQUE TENGO QUE ADMITIR QUE ERA LA ONDA
ZEEEE
👍: 0 ⏩: 0
Naruland-XD [2009-09-19 19:25:26 +0000 UTC]
Muchas gracias! Me alegro de que te gustaba. y la galería de Niza
👍: 0 ⏩: 0