Friday, October 26, 2018

Uri 1114 soution in C | Fixed Password

/*Before seeing the code solution make sure that you have tried enough. Don’t copy- paste the whole code. Find out the logic. If you face any trouble, just inform me in comment.*/


#include<stdio.h>
main()
{
    int i;
    while(1)
    {
        scanf("%d",&i);
       if(i==2002)
       {
           printf("Acesso Permitido\n");
           break;
       }
        else if(i!=2002)
        {
            printf("Senha Invalida\n");
        }

    }
    return 0;
}

 //Happy_Coding

No comments:

Post a Comment