scanf reading the variable twice!

Asked

Viewed 48 times

-1

#include <stdio.h>
#include <stdlib.h>
/*Faça um programa onde o usuário digita um valor, e 
imprima na tela todos os valores entre 0 e o valor digitado. */
int main()
{
    int valor, i;
    //Vamos fazer com oque o usuário digite um valor para controlar o fim do fluxo!
    printf("Informe qualquer valor diferente de 0: \n");
    scanf("%d ", &valor);
    for(i = 1; i <= valor; i++)
    {
        printf("Número: %d \n", i);
    }

    return 0;
}

1 answer

0

  • I’ll test it here

  • Man thank you very much, although it is already late to have discovered this error, I delivered the incomplete activity even

Browser other questions tagged

You are not signed in. Login or sign up in order to post.