This commit is contained in:
Le Stagiaire
2024-11-19 15:11:05 +01:00
parent f56d985cad
commit 838f7415fb
7 changed files with 148 additions and 3 deletions

18
CPP/Template.txt Normal file
View File

@ -0,0 +1,18 @@
/*
* Titre du programme
* Par Florian Goussot
* BTS CIEL 2e ann<6E>e
* Fait le 05/11/2024 <20> Nancy
*/
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
int main(void) {
do {
system("cls");
printf_s("\t\t\tTitre du programme\n");
printf_s("\n\nAppuyez sur Echap pour quitter...");
} while (_getch() != 27);
return 0;
}