semaine 1
This commit is contained in:
commit
346d2e3771
10 changed files with 100 additions and 0 deletions
52
.gitignore
vendored
Normal file
52
.gitignore
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Object files
|
||||
*.o
|
||||
*.ko
|
||||
*.obj
|
||||
*.elf
|
||||
|
||||
# Linker output
|
||||
*.ilk
|
||||
*.map
|
||||
*.exp
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Libraries
|
||||
*.lib
|
||||
*.a
|
||||
*.la
|
||||
*.lo
|
||||
|
||||
# Shared objects (inc. Windows DLLs)
|
||||
*.dll
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.su
|
||||
*.idb
|
||||
*.pdb
|
||||
|
||||
# Kernel Module Compile Results
|
||||
*.mod*
|
||||
*.cmd
|
||||
.tmp_versions/
|
||||
modules.order
|
||||
Module.symvers
|
||||
Mkfile.old
|
||||
dkms.conf
|
BIN
semaine-1/automatisation/main
Executable file
BIN
semaine-1/automatisation/main
Executable file
Binary file not shown.
12
semaine-1/automatisation/main.c
Normal file
12
semaine-1/automatisation/main.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
|
||||
int i;
|
||||
|
||||
for (i = 1; i <= 10; i++) {
|
||||
printf("%02dx07 = %02d\n", i, i * 7);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
BIN
semaine-1/belle-console/main
Executable file
BIN
semaine-1/belle-console/main
Executable file
Binary file not shown.
13
semaine-1/belle-console/main.c
Normal file
13
semaine-1/belle-console/main.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
|
||||
char first[] = "Bonjour Capitaine Barlow,",
|
||||
second[] = "Systèmes de contrôle de la sécurité en cours de vérification...",
|
||||
third[] = "Systèmes de contrôle opérationnels !",
|
||||
fourth[] = "Enclencher la phase de démarrage manuel dans 10s et bon 'cypherwind'.";
|
||||
|
||||
printf("%s\n\t%s\n\t%s\n%s", first, second, third, fourth);
|
||||
|
||||
return 0;
|
||||
}
|
BIN
semaine-1/bienvenue-a-bord/main
Executable file
BIN
semaine-1/bienvenue-a-bord/main
Executable file
Binary file not shown.
9
semaine-1/bienvenue-a-bord/main.c
Normal file
9
semaine-1/bienvenue-a-bord/main.c
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
|
||||
printf("A l'abordage !");
|
||||
|
||||
return 0;
|
||||
}
|
3
semaine-1/cybersecurite/README.md
Normal file
3
semaine-1/cybersecurite/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
La réponse se trouve [ici](https://discord.com/channels/1068824613603262464/1068824614052040748/1101859413746266113)
|
||||
|
||||
P.S: Il faut être membre du Discord pour y avoir accès, alors qu'est ce que tu attends? [Rejoins-nous!](https://discord.gg/72vuHcwUkE)
|
BIN
semaine-1/type/main
Executable file
BIN
semaine-1/type/main
Executable file
Binary file not shown.
11
semaine-1/type/main.c
Normal file
11
semaine-1/type/main.c
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
|
||||
char name[15 + 1] = "Philipz Barlow";
|
||||
int age = 47;
|
||||
|
||||
printf("Bienvenue %s, %d ans, c'est l'âge du meilleur capitaine.", name, age);
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Reference in a new issue