Cita de: engel lex en 6 Agosto 2015, 06:46 AMCódigo (c) [Seleccionar]
if(Es_Par(c)==1){
}
Código (c) [Seleccionar]
if(Es_Par(c))
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: engel lex en 6 Agosto 2015, 01:28 AM
depende del compilador y los parámetros de compilación, normalmente es basura...
en resto en tal caso seríaint Es_Par(int numero){
if(numero%2==0)
{
return numero; //True
}
return 0; //False
}
int Es_Par(int numero){
if(numero%2==0)
{
return 1; //True
}
return 0; //False
}
Cita de: Blast06 en 5 Agosto 2015, 13:44 PM
for(i = 0; i < 128; i++){
for(h=i+1; h < 128; h++){
if(texto>= texto[h]){
elmayor= texto;
texto=texto[h];
texto[h]=elmayor;}
}
}
#include<stdio.h>
#include <stdlib.h>
int main(){
int n, i, j,aux, *l;
scanf("%d",&n);
l = (int *)calloc( n + 1, sizeof(int) ); //n+1 enteros puestos a 0
for (i = 2; i <= n; i++){
if (l[i] == 0){ //consideramos no tachados los marcados con 0
for (j = 2; ;j++){
aux = i * j; //los multiplos del numero
if (aux > n) //menores o iguales a n
break;
l[aux] = 1; //los tachamos
}
}
}
for (i = 2; i <= n; i++)
if (l[i] == 0) //si no esta tachado
printf("%d ",i); // lo imprimimos
}
Cita de: sagmont en 12 Junio 2015, 21:18 PM
-calibre: cannot connect to X server
CitarIf you get an error about an untrusted certificate, that means your computer does not have any root certificates installed and so cannot download the installer securely. If you still want to proceed, pass the --no-check-certificate option to wget, like this:sudo -v && wget --no-check-certificate -nv -O- https://raw.githubusercontent.com/kovidgoyal/calibre/master/setup/linux-installer.py | sudo python -c "import sys; main=lambda:sys.stderr.write('Download failed\n'); exec(sys.stdin.read()); main()"
#aptitude install calibre