You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
344 B
14 lines
344 B
#include "Msae.h"
|
|
|
|
int login(void)
|
|
{
|
|
char id,mdp[31]="mettez20svp";
|
|
while(id!='A' && id!='a' && id!='U' && id!='u')
|
|
{
|
|
printf("################################################################\n\tBienvenue!\n\n\n\tSouhaitez-vous vous connecter en tant qu'utilisateur ou administeur? (U/A)\t");
|
|
scanf("%c%*c",&id);
|
|
printf("%c",id);
|
|
}
|
|
|
|
}
|