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.
28 lines
2.8 KiB
28 lines
2.8 KiB
#include<string.h>
|
|
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include"part1.h"
|
|
|
|
|
|
void global(void)
|
|
{
|
|
int rep;
|
|
printf("🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️\n");
|
|
printf("🎟️----------------------------------BIENVENUE--------------------------------🎟️\n");
|
|
printf("🎟️----------------------------SUR LE MENU D'ACCUEIL--------------------------🎟️\n");
|
|
printf("🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️\n");
|
|
printf("🎟️---------------------------------------------------------------------------🎟️\n");
|
|
printf("🎟️----------------------------Choisissez une option--------------------------🎟️\n");
|
|
printf("🎟️---------------------------------------------------------------------------🎟️\n");
|
|
printf("🎟️---------------------1-Informations sur les départements-------------------🎟️\n");
|
|
printf("🎟️---------------------------2-Phase de candidature--------------------------🎟️\n");
|
|
printf("🎟️------------------------3-Traitement des candidatures----------------------🎟️\n");
|
|
printf("🎟️--------------------------4-Validation du candidat-------------------------🎟️\n");
|
|
printf("🎟️---------------------------------------------------------------------------🎟️\n");
|
|
printf("🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️🎟️\n");
|
|
scanf("%d", &rep);
|
|
if (rep == 1)
|
|
{
|
|
part1();
|
|
}
|
|
} |