26 Octobre

This commit is contained in:
2022-10-26 16:46:01 +02:00
parent 5237323aa0
commit b035a45080
9 changed files with 273 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main (int argc, char *argv[]){
char mdp[27];
char c;
int i=0;
strcpy(mdp,"Quoi?feur!");
printf("Veuillez saisir un mot de passe (26 caracteres maximum): ");
char entree[27];
c=getchar();
while(c!='\n'){
entree[i]=c;
c=getchar();
i++;
} if(strcmp(mdp,entree)==0){
printf("Identification reussie !\n");
} else{
printf("Mot de passe incorrect, le mot de passe est Quoi?feur!\n");
}
return 0;
}