Id returned 1 exit status error in my C program

我怕爱的太早我们不能终老 提交于 2019-12-12 03:44:11

问题


I am trying to make a game where you need to find the secret number between 1 & 100 and if you don't find it, the program tells you if it's larger or smaller. Here's the code:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

 int main ( int argc, char** argv )
{
    int nombreMystere = 0, nombreEntre = 0;
    const int MAX = 100, MIN = 1;

    srand(time(NULL));
    nombreMystere = (rand() % (MAX - MIN + 1)) + MIN;

    do
    {
        printf("Quel est le nombre ? ");
        scanf("%d", &nombreEntre);

        // On compare le nombre entré avec le nombre mystère

        if (nombreMystere > nombreEntre)
            printf("C'est plus !\n\n");
        else if (nombreMystere < nombreEntre)
            printf("C'est moins !\n\n");
        else
            printf ("Bravo, vous avez trouve le nombre mystere !!!\n\n");
    } while (nombreEntre != nombreMystere);

    return 0;
}

Sorry, It's in French. So the error is:

Id returned 1 exit status.

来源:https://stackoverflow.com/questions/37634384/id-returned-1-exit-status-error-in-my-c-program

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!