Jump to content
Fórum Script Brasil
  • 0

Duvida sobre programa


Xaolinn

Question

Ola a todos,

preciso fazer um programa que le 2 numeros inteiros e calcula a quantidade de numeros primos que não tenham 7 no numero(ex. não pode ser o num 237) dentro do intervalo dos 2 numeros lidos.

o codigo que estou tentando segue abaixo

int main()  {
    
  int min, max, R, num_primos, i, j, X, h, R2;
    
    scanf("%d", &min);
    scanf("%d", &max);
    if (min < 0 || max < 0 || min > max){
           printf("Entrada invalida \n");
           return 0;
    } 
    num_primos = 0;
    for (i = min; i <= max; i++) { 
        for (j = 2; j <= i; j++) {
        R = i % j;
        }
        if (R != 0){
        X = i;
        num_primos = num_primos + 1;
        }
        else {
            continue;
            }
            }
        for (h = 10; h <= 100000000; h = h*10){
            R2 = i % h;
            if (R2 == 7){
                   num_primos = num_primos - 1;
                   }
                   }
       printf ("%d \n", num_primos);  
          
}

alguém consegue ver alguma coisa errada ou tenha alguma ideia, o programa compila mais não da certo.

obrigado.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...