Difference between revisions of "Solução: Problema do quadrado perfeito (Rafael Dourado)"

From AdonaiMedrado.Pro.Br
Jump to: navigation, search
 
Line 21: Line 21:
 
               resposta++;
 
               resposta++;
 
         }
 
         }
        if (entrada==0)
 
          break;
 
 
            
 
            
 
     } while (entrada!=0);
 
     } while (entrada!=0);

Latest revision as of 17:18, 5 June 2009

#include <stdio.h> 
#include <math.h>
 
int main (void)
{
    int entrada,i,k;
    int contador=0,resposta=0;
    int * numero = NULL;
 
    do {
        for (i=0;i<10;i++)
        {
            scanf ("%d", &entrada);
            if (entrada==0)
               break;
            contador++;
            numero = (int*) realloc (numero, contador * sizeof(int));
            k = sqrt(entrada);
            if (k*k == entrada)
               resposta++;
        }
 
    } while (entrada!=0);
 
    printf ("%d\n", resposta);
    free (numero);
    system ("pause");
}