PDA

View Full Version : ??????????



CARTEIRO
24-08-2006, 19:13:42
1878

GENERAL
24-08-2006, 19:20:11
Wtf??????

BudOg
24-08-2006, 19:49:18
Esse tá funfando!

suicidio.jpg (http://www.hunger.hu/win.html)

Rá!

c0m4nch3
24-08-2006, 20:12:54
Foto quente (hardcore) (http://gamesbrasil.uol.com.br/forum/showthread.php?t=37841)

Skillo
24-08-2006, 20:18:54
?????

GENERAL
24-08-2006, 20:24:06
seis saum doido :sm25:

Mantrhax
24-08-2006, 20:56:02
2 Na+ + 2e- ? 2 Na(l)
2 Cl- ? Cl2(g) + 2e-
--------------------------------------------
2 Na+ + 2Cl- ? 2Na(l) + Cl2(g)

25-08-2006, 01:29:55
2 Na+ + 2e- ? 2 Na(l)
2 Cl- ? Cl2(g) + 2e-
--------------------------------------------
2 Na+ + 2Cl- ? 2Na(l) + Cl2(g)

Aff....para com isso....

c0m4nch3
25-08-2006, 15:56:08
#include <stdio.h>
#include <stdlib.h>

int main (){

int res,aux;
int x=0,y=0,w=0,z=0;
int i,j,k,l;

printf ("Numero: ");
scanf ("%d",&res);

for (i=0;i<=10000;i++){
++x;
for (j=0;j<=10000;j++){
++y;
for (k=0;k<=10000;k++){
++w;
for (l=0;l<=100000;l++){
++z;

aux = (x*x) + (y*y) + (w*w) + (z*z);

if ( aux == res){
printf ("\n %d^2 + %d^2 + %d^2 + %d^2 \n",x,y,w,z);
}
}
z=0;
}
w=0;
}
y=0;
}

system ("pause");
return 0;

}