Untitled

Anonymous
plain_text
11/26/2024 6:50 PM
364 B
18
Indexable
#include <stdio.h>

int main() {
    int pass;

    while (1) {
        scanf("%d", &pass);
        if (pass == 2002) {
            printf("Acesso Permitido\n");
            break; 
        } else {
            printf("Senha Invalida\n");
        }
    }

    return 0;
}
Editor is loading...
Leave a Comment